diff options
author | Paul W. Frields <stickster@gmail.com> | 2007-04-27 20:07:41 +0000 |
---|---|---|
committer | Paul W. Frields <stickster@gmail.com> | 2007-04-27 20:07:41 +0000 |
commit | 6c47544ef9f0bb8dbb3fa922834ec9eca925b44e (patch) | |
tree | c7c101db70b9104386b9997be1b72d944da4f6e7 | |
parent | 483e2b66562a81dcb6690c7c0454fb4238b9fa29 (diff) | |
download | documentation-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-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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)) |