From 6c47544ef9f0bb8dbb3fa922834ec9eca925b44e Mon Sep 17 00:00:00 2001 From: "Paul W. Frields" Date: Fri, 27 Apr 2007 20:07:41 +0000 Subject: 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.... --- Makefile | 4 ++-- 1 file 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)) -- cgit