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/teckit | |
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/teckit')
-rw-r--r-- | Build/source/libs/teckit/include/teckit/Makefile.am | 2 | ||||
-rw-r--r-- | Build/source/libs/teckit/include/teckit/Makefile.in | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/Build/source/libs/teckit/include/teckit/Makefile.am b/Build/source/libs/teckit/include/teckit/Makefile.am index 36e5522a210..7ab89da5884 100644 --- a/Build/source/libs/teckit/include/teckit/Makefile.am +++ b/Build/source/libs/teckit/include/teckit/Makefile.am @@ -15,7 +15,7 @@ TECKIT_HDRS = \ all-local: @for file in $(TECKIT_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/teckit/include/teckit/Makefile.in b/Build/source/libs/teckit/include/teckit/Makefile.in index 079b8718d38..667fc4aaf28 100644 --- a/Build/source/libs/teckit/include/teckit/Makefile.in +++ b/Build/source/libs/teckit/include/teckit/Makefile.in @@ -348,7 +348,7 @@ uninstall-am: all-local: @for file in $(TECKIT_HDRS); do \ - test -f $$f || continue; \ + test -f $$file || continue; \ inst=`echo $$file | sed -e 's/^.*\///'`; \ test -f $$inst || { \ echo "$(LN_S) $$file $$inst"; \ |