You can not select more than 25 topics
Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- #!/bin/sh
- autoreconf -Iautoconf-archive/m4 -v --install || exit 1
-
- # If there are any options, assume the user wants to run configure.
- # To run configure w/o any options, use ./autogen.sh --configure
- if [ $# -gt 0 ] ; then
- case "$1" in
- --conf*)
- shift 1
- ;;
- esac
- exec ./configure "$@"
- fi
|