do not use --symlink for autoreconf

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>
This commit is contained in:
Andre Naujoks
2014-07-02 16:03:34 +02:00
committed by Marc Kleine-Budde
parent 18f8416a40
commit 7f24d6adf7
+1 -1
View File
@@ -17,6 +17,6 @@ banner() {
banner "autoreconf"
autoreconf --force --install --symlink -Wall || exit $?
autoreconf --force --install -Wall || exit $?
banner "Finished"