diff options
| author | 2020-06-09 04:02:32 +0200 | |
|---|---|---|
| committer | 2020-06-09 04:02:32 +0200 | |
| commit | 6cd36e65435c63bf2569d825e1f42c83721b364a (patch) | |
| tree | dbbcc00c68279c3f0154fbe1d9bc864adee9ca3c /autogen.sh | |
| parent | 33fabcb906b7f380a545a5a357bd9464d716a85b (diff) | |
| download | ideviceinstaller-6cd36e65435c63bf2569d825e1f42c83721b364a.tar.gz ideviceinstaller-6cd36e65435c63bf2569d825e1f42c83721b364a.tar.bz2 | |
Apply changes towards a project wide common "autogen.sh" file
Diffstat (limited to 'autogen.sh')
| -rwxr-xr-x | autogen.sh | 33 | 
1 files changed, 22 insertions, 11 deletions
| @@ -1,15 +1,26 @@  #!/bin/sh -gprefix=`which glibtoolize 2>&1 >/dev/null` -if [ $? -eq 0 ]; then  -  glibtoolize --force -else -  libtoolize --force -fi -aclocal -I m4 -autoheader -automake --add-missing -autoconf + +olddir=`pwd` +srcdir=`dirname $0` +test -z "$srcdir" && srcdir=. + +( +  cd "$srcdir" + +  gprefix=`which glibtoolize 2>&1 >/dev/null` +  if [ $? -eq 0 ]; then +    glibtoolize --force +  else +    libtoolize --force +  fi +  aclocal -I m4 +  autoheader +  automake --add-missing +  autoconf + +  cd "$olddir" +)  if [ -z "$NOCONFIGURE" ]; then -    ./configure "$@" +  $srcdir/configure "$@"  fi | 
