Fix autogen.sh usage on MacOS X.
This commit is contained in:
parent
942dcfa631
commit
f05e432df8
1 changed files with 3 additions and 2 deletions
|
@ -6,14 +6,15 @@ rm -f aclocal.m4 ltmain.sh
|
|||
touch README
|
||||
|
||||
LIBTOOLIZE=libtoolize
|
||||
ACLOCAL_ARGS="-I m4"
|
||||
case `uname -s` in
|
||||
Darwin)
|
||||
LIBTOOLIZE=glibtoolize
|
||||
ACLOCAL_ARGS="-I /opt/local/share/aclocal/"
|
||||
ACLOCAL_ARGS="$ACLOCAL_ARGS -I /opt/local/share/aclocal/"
|
||||
# SKIP_PCSC="1"
|
||||
;;
|
||||
FreeBSD)
|
||||
ACLOCAL_ARGS="-I /usr/local/share/aclocal/"
|
||||
ACLOCAL_ARGS="$ACLOCAL_ARGS -I /usr/local/share/aclocal/"
|
||||
;;
|
||||
esac
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue