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>
pull/1/head
Andre Naujoks 2014-07-02 14:12:58 +02:00 committed by Marc Kleine-Budde
parent 18f8416a40
commit 7f24d6adf7
1 changed files with 1 additions and 1 deletions

View File

@ -17,6 +17,6 @@ banner() {
banner "autoreconf"
autoreconf --force --install --symlink -Wall || exit $?
autoreconf --force --install -Wall || exit $?
banner "Finished"