We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 63f53b4 commit b1a0799Copy full SHA for b1a0799
autogen.sh
@@ -1,11 +1,4 @@
1
#!/usr/bin/env sh
2
3
-if [[ $TRAVIS_OS_NAME == osx ]];
4
- then
5
- monoVer=$(mono --version | head -n 1 | cut -d' ' -f 5)
6
- prefix="/Library/Frameworks/Mono.framework/Versions/$monoVer";
7
- else prefix="/usr";
8
-fi
9
-
10
which autoreconf > /dev/null || (echo "Please install autoconf" && exit 1)
11
-autoreconf && ./configure --prefix=$prefix
+autoreconf && ./configure $@
travis-autogen.sh
@@ -0,0 +1,10 @@
+#!/usr/bin/env sh
+
+if [[ $TRAVIS_OS_NAME == osx ]];
+ then
+ monoVer=$(mono --version | head -n 1 | cut -d' ' -f 5)
+ prefix="/Library/Frameworks/Mono.framework/Versions/$monoVer";
+ else prefix="/usr";
+fi
+./autogen.sh --prefix=$prefix
0 commit comments