From: Andre Naujoks Date: Wed, 2 Jul 2014 12:12:58 +0000 (+0200) Subject: do not use --symlink for autoreconf X-Git-Url: https://rtime.felk.cvut.cz/gitweb/can-utils.git/commitdiff_plain/7f24d6adf70077752c1a523c36821db12402c788 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 Signed-off-by: Marc Kleine-Budde --- diff --git a/autogen.sh b/autogen.sh index 29db9c9..6d1c20a 100755 --- a/autogen.sh +++ b/autogen.sh @@ -17,6 +17,6 @@ banner() { banner "autoreconf" -autoreconf --force --install --symlink -Wall || exit $? +autoreconf --force --install -Wall || exit $? banner "Finished"