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
parent
18f8416a40
commit
7f24d6adf7
|
|
@ -17,6 +17,6 @@ banner() {
|
||||||
|
|
||||||
banner "autoreconf"
|
banner "autoreconf"
|
||||||
|
|
||||||
autoreconf --force --install --symlink -Wall || exit $?
|
autoreconf --force --install -Wall || exit $?
|
||||||
|
|
||||||
banner "Finished"
|
banner "Finished"
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue