[Groonga-commit] groonga/groonga at 559b83d [master] Really fix build error with concurrent jobs (for example, "make -j8")

Back to archive index

Kouhei Sutou null+****@clear*****
Wed Mar 25 17:05:57 JST 2015


Kouhei Sutou	2015-03-25 17:05:57 +0900 (Wed, 25 Mar 2015)

  New Revision: 559b83d7633f47db8086544a0a424ed647ce673f
  https://github.com/groonga/groonga/commit/559b83d7633f47db8086544a0a424ed647ce673f

  Message:
    Really fix build error with concurrent jobs (for example, "make -j8")

  Modified files:
    .gitignore
    build/makefiles/gettext.am

  Modified: .gitignore (+1 -0)
===================================================================
--- .gitignore    2015-03-25 16:41:31 +0900 (32e111e)
+++ .gitignore    2015-03-25 17:05:57 +0900 (a24ae22)
@@ -81,6 +81,7 @@ CMakeFiles
 /doc/locale/*/LC_MESSAGES/doctrees/
 /doc/locale/*/LC_MESSAGES/pot-build-stamp
 /doc/locale/*/LC_MESSAGES/edit-po-build-stamp
+/doc/locale/*/LC_MESSAGES/mo-build-stamp
 /doc/locale/en/LC_MESSAGES/*.po
 /doc/commands_not_implemented/
 /doc/sphinx/

  Modified: build/makefiles/gettext.am (+10 -2)
===================================================================
--- build/makefiles/gettext.am    2015-03-25 16:41:31 +0900 (2ba65a9)
+++ build/makefiles/gettext.am    2015-03-25 17:05:57 +0900 (bfb0b80)
@@ -1,6 +1,8 @@
 include $(top_srcdir)/doc/files.am
 include $(top_srcdir)/build/makefiles/sphinx-build.am
 
+CLEANFILES =
+
 EXTRA_DIST +=					\
 	$(po_files)
 
@@ -11,9 +13,11 @@ endif
 
 if DOCUMENT_BUILDABLE
 BUILT_SOURCES +=				\
+	mo-build-stamp
+CLEANFILES +=					\
 	pot-build-stamp				\
 	edit-po-build-stamp			\
-	$(mo_files)
+	mo-build-stamp
 endif
 
 SUFFIXES += .pot .po .mo .edit
@@ -48,7 +52,7 @@ SUFFIXES += .pot .po .mo .edit
 
 if DOCUMENT_BUILDABLE
 update: edit-po-build-stamp
-build: update $(mo_files)
+build: mo-build-stamp
 else
 update:
 build:
@@ -71,3 +75,7 @@ pot-build-stamp: $(absolute_source_files)
 edit-po-build-stamp: pot-build-stamp
 	$(MAKE) $(edit_po_files)
 	@touch $@
+
+mo-build-stamp: edit-po-build-stamp
+	$(MAKE) $(mo_files)
+	@touch $@
-------------- next part --------------
HTML����������������������������...
Download 



More information about the Groonga-commit mailing list
Back to archive index