From 7f24d6adf70077752c1a523c36821db12402c788 Mon Sep 17 00:00:00 2001 From: Andre Naujoks Date: Wed, 2 Jul 2014 14:12:58 +0200 Subject: [PATCH] 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 --- autogen.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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" -- 2.7.4