X-Git-Url: http://pilppa.org/gitweb/?p=libplpha.git;a=blobdiff_plain;f=autobuild.sh;fp=autobuild.sh;h=81ccb79a204820edbe945cd73fc65181d76c82b0;hp=abb7d1c508e2e89b43e1fbdf38b1b7285ecc1cff;hb=4af5efbcb117bb22bdba861a5ca784cd2f9d6d24;hpb=6ea29071e6e009e89308bf95dd34297ec8da7c54 diff --git a/autobuild.sh b/autobuild.sh index abb7d1c..81ccb79 100755 --- a/autobuild.sh +++ b/autobuild.sh @@ -1,12 +1,21 @@ #!/bin/sh -export PKG_CONFIG_PATH=/usr/local/lib/pkgconfig +PREFIX=${PREFIX:=/usr/local} + +if ! [ -d /lib64 ] ; +then + LIBDIR=${LIBDIR:=$PREFIX/lib} +else + LIBDIR=${LIBDIR:=$PREFIX/lib64} +fi +export PKG_CONFIG_PATH=$LIBDIR/pkgconfig:$PKG_CONFIG_PATH + if ! [ -e Makefile ] ; then echo "No Makefile available, generating it." libtoolize --automake --force --copy - autoreconf --force --install - ./configure --prefix=/usr/local + autoreconf --install + ./configure --prefix=$PREFIX --libdir=$LIBDIR else echo "Makefile found, no need to generate it." fi