summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPaul W. Frields <stickster@gmail.com>2007-04-27 20:07:41 +0000
committerPaul W. Frields <stickster@gmail.com>2007-04-27 20:07:41 +0000
commit6c47544ef9f0bb8dbb3fa922834ec9eca925b44e (patch)
treec7c101db70b9104386b9997be1b72d944da4f6e7
parent483e2b66562a81dcb6690c7c0454fb4238b9fa29 (diff)
downloaddocumentation-guide-6c47544ef9f0bb8dbb3fa922834ec9eca925b44e.tar.gz
documentation-guide-6c47544ef9f0bb8dbb3fa922834ec9eca925b44e.tar.xz
documentation-guide-6c47544ef9f0bb8dbb3fa922834ec9eca925b44e.zip
This fix is required for people using FC5. Apparently FC6's version
of make fixes a bug that doesn't read multiline template commands like this. Or maybe it's just my boo-boo, either way....
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 87f589e..22f05d7 100644
--- a/Makefile
+++ b/Makefile
@@ -6,7 +6,7 @@
#######################################################################
PRI_LANG = en_US
-OTHERS = zh_CN
+OTHERS = zh_CN pt_BR
DOCBASE = documentation-guide
define XMLFILES_template
@@ -27,7 +27,7 @@ endef
######################################################
define find-makefile-common
-for d in docs-common ../docs-common ../../docs-common; do
+for d in docs-common ../docs-common ../../docs-common; do \
if [ -f $$d/Makefile.common ]; then echo "$$d/Makefile.common"; break; fi; done
endef
include $(shell $(find-makefile-common))