]> rtime.felk.cvut.cz Git - can-utils.git/commitdiff
do not use --symlink for autoreconf
authorAndre Naujoks <nautsch2@gmail.com>
Wed, 2 Jul 2014 12:12:58 +0000 (14:12 +0200)
committerMarc Kleine-Budde <mkl@pengutronix.de>
Wed, 2 Jul 2014 14:03:34 +0000 (16:03 +0200)
When packaging the can-utils, I understand, that the generation step for
autoconf should be done beforehand. However using the --symlink option in the
autoreconf step installs links instead of the actual files, which leads to a
build failure when trying to build on another host with different autotools
installed.

Signed-off-by: Andre Naujoks <nautsch2@gmail.com>
Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de>
autogen.sh

index 29db9c9806d6bc8a0347104315fd03250757f106..6d1c20a24f67c60022fe53e7d5f4be313b979adc 100755 (executable)
@@ -17,6 +17,6 @@ banner() {
 
 banner "autoreconf"
 
-autoreconf --force --install --symlink -Wall || exit $?
+autoreconf --force --install -Wall || exit $?
 
 banner "Finished"