]> git.tuebingen.mpg.de Git - paraslash.git/commit
Fix make clean and make install.
authorGerrit Renker <gerrit.renker@googlemail.com>
Wed, 3 Feb 2010 14:05:33 +0000 (15:05 +0100)
committerAndre Noll <maan@systemlinux.org>
Wed, 3 Feb 2010 14:17:01 +0000 (15:17 +0100)
commit93722fe7cdfe7cdebd27a36a6f6dc0054468ec8c
tree6c0547b6d74afeba89509a4d17816c4505d6a3e7
parent9609fd30e0d3db45ede3ab5c6bc3a77c15b6aef8
Fix make clean and make install.

Commit 77aa6680 replaced the hardcoded list of binaries in Makefile.in
by the autoconf macro @executables@. However, the "install" and the
"clean" targets still used the now undefined $(BINARIES) variable. This
caused "make clean" to not remove any executables and "make install"
to fail with

/usr/bin/install -c -s -m 755  /usr/local/bin
/usr/bin/install: missing destination file operand after `/usr/local/bin'
Try `/usr/bin/install --help' for more information.

Fix this bug by using @executables@ rather than $(BINARIES).
Makefile.in