mirror of
https://github.com/rofl0r/proxychains-ng
synced 2025-01-23 01:12:59 +08:00
fix bogus use of ! in configure
This commit is contained in:
parent
e99dd76941
commit
03b49f529e
12
configure
vendored
12
configure
vendored
@ -31,27 +31,27 @@ while true ; do
|
|||||||
esac
|
esac
|
||||||
done
|
done
|
||||||
|
|
||||||
if [ ! $exec_prefix ] ; then
|
if [ -z "$exec_prefix" ] ; then
|
||||||
exec_prefix=$prefix
|
exec_prefix=$prefix
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ ! $libdir ] ; then
|
if [ -z "$libdir" ] ; then
|
||||||
libdir=$prefix/lib
|
libdir=$prefix/lib
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ ! $includedir ] ; then
|
if [ -z "$includedir" ] ; then
|
||||||
includedir=$prefix/include
|
includedir=$prefix/include
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ ! $sysconfdir ] ; then
|
if [ -z "$sysconfdir" ] ; then
|
||||||
sysconfdir=$prefix/etc
|
sysconfdir=$prefix/etc
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ ! $bindir ] ; then
|
if [ -z "$bindir" ] ; then
|
||||||
bindir=$exec_prefix/bin
|
bindir=$exec_prefix/bin
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ ! $CC ] ; then
|
if [ -z "$CC" ] ; then
|
||||||
CC=cc
|
CC=cc
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user