aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPetteri Räty <petsku@petteriraty.eu>2010-08-28 15:42:47 +0300
committerPetteri Räty <petsku@petteriraty.eu>2010-08-28 15:42:47 +0300
commit5e42c594f367665605c02e2ebccf1e226d73e274 (patch)
treee14aa8ef93221f0dd0aae840041eddaf44f15e87 /autogen.sh
parentAdd more build system generated files to gitignore (diff)
downloadlibbash-5e42c594f367665605c02e2ebccf1e226d73e274.tar.gz
libbash-5e42c594f367665605c02e2ebccf1e226d73e274.tar.bz2
libbash-5e42c594f367665605c02e2ebccf1e226d73e274.zip
Handle autoreconf warnings
Enable warnings in autogen.sh by passing -W all to autoreconf. This pointed out things that are now fixed. AC_CHECK_FILE assumes you are checking for a runtime file so it fails for cross compiling and as such is not for our usage. Instead configure.ac now uses test -f.
Diffstat (limited to 'autogen.sh')
-rwxr-xr-xautogen.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/autogen.sh b/autogen.sh
index 9650dd2..e18e24b 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -1,2 +1,2 @@
#!/bin/sh
-autoreconf -i && ./configure --enable-gtest
+autoreconf -W all -i && ./configure --enable-gtest