File: autogen.sh

package info (click to toggle)
bindfs 1.18.4-0.1
  • links: PTS
  • area: main
  • in suites: forky, sid
  • size: 2,008 kB
  • sloc: sh: 4,442; ansic: 4,287; ruby: 1,288; makefile: 47
file content (19 lines) | stat: -rwxr-xr-x 316 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/bin/bash -e

autoreconf -fi

if [ "$1" == "-d" ]; then
	shift;
	echo "Running ./configure"
	echo
	./configure "$@"
elif [ -n "$1" ]; then
	echo
	echo "./configure $@"
	./configure "$@"
else
	echo
	echo "autogen.sh completed successfully."
	echo "Now run ./configure with the appropriate flags and then make."
fi