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/gd/include/Makefile.am | |
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/gd/include/Makefile.am')
-rw-r--r-- | Build/source/libs/gd/include/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Build/source/libs/gd/include/Makefile.am b/Build/source/libs/gd/include/Makefile.am index 92e85e321cc..3662692f58d 100644 --- a/Build/source/libs/gd/include/Makefile.am +++ b/Build/source/libs/gd/include/Makefile.am @@ -25,7 +25,7 @@ GD_HDRS = \ all-local: @for file in $(GD_HDRS); do \ - test -f $$f || continue; \ + test -f $$file || continue; \ inst=`echo $$file | sed -e 's/^.*\///'`; \ test -f $$inst || { \ echo "$(LN_S) $$file $$inst"; \ |