blob: 7a593f4913cb87ce69f726548586317c4f0d8570 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#!/bin/sh
autoconf
if [ x"$NO_CONFIGURE" = "x" ]; then
echo " + Running 'configure $@':"
if [ -z "$*" ]; then
echo " ** If you wish to pass arguments to ./configure, please"
echo " ** specify them on the command line."
fi
./configure ${1+"$@"} && echo "Now type 'make' to compile" || exit 1
fi
|