diff options
author | Peter Breitenlohner <peb@mppmu.mpg.de> | 2010-01-28 14:28:58 +0000 |
---|---|---|
committer | Peter Breitenlohner <peb@mppmu.mpg.de> | 2010-01-28 14:28:58 +0000 |
commit | abfc1280c913b5af4a71f910d876a28ea914aea4 (patch) | |
tree | 3698e0e5494f0cbe19cf5b7800e0973ae19c271a /Build/source/libs/graphite | |
parent | fc46eb7de83e721d2d5e6c75236be15b7789d76f (diff) |
build system: fix shell syntax bugs in Makefiles
git-svn-id: svn://tug.org/texlive/trunk@16853 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/libs/graphite')
-rw-r--r-- | Build/source/libs/graphite/include/graphite/Makefile.am | 2 | ||||
-rw-r--r-- | Build/source/libs/graphite/include/graphite/Makefile.in | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/Build/source/libs/graphite/include/graphite/Makefile.am b/Build/source/libs/graphite/include/graphite/Makefile.am index 30a35eb3209..a33d152ff6a 100644 --- a/Build/source/libs/graphite/include/graphite/Makefile.am +++ b/Build/source/libs/graphite/include/graphite/Makefile.am @@ -36,7 +36,7 @@ GRAPHITE_HDRS = \ all-local: @for file in $(GRAPHITE_HDRS); do \ - test -f $$f || continue; \ + test -f $$file || continue; \ inst=`echo $$file | sed -e 's/^.*\///'`; \ test -f $$inst || { \ echo "$(LN_S) $$file $$inst"; \ diff --git a/Build/source/libs/graphite/include/graphite/Makefile.in b/Build/source/libs/graphite/include/graphite/Makefile.in index 9dee25562c2..67ebaae615e 100644 --- a/Build/source/libs/graphite/include/graphite/Makefile.in +++ b/Build/source/libs/graphite/include/graphite/Makefile.in @@ -359,7 +359,7 @@ uninstall-am: all-local: @for file in $(GRAPHITE_HDRS); do \ - test -f $$f || continue; \ + test -f $$file || continue; \ inst=`echo $$file | sed -e 's/^.*\///'`; \ test -f $$inst || { \ echo "$(LN_S) $$file $$inst"; \ |