mirror of
https://github.com/rofl0r/proxychains-ng
synced 2025-01-06 21:02:55 +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
|
||||
done
|
||||
|
||||
if [ ! $exec_prefix ] ; then
|
||||
if [ -z "$exec_prefix" ] ; then
|
||||
exec_prefix=$prefix
|
||||
fi
|
||||
|
||||
if [ ! $libdir ] ; then
|
||||
if [ -z "$libdir" ] ; then
|
||||
libdir=$prefix/lib
|
||||
fi
|
||||
|
||||
if [ ! $includedir ] ; then
|
||||
if [ -z "$includedir" ] ; then
|
||||
includedir=$prefix/include
|
||||
fi
|
||||
|
||||
if [ ! $sysconfdir ] ; then
|
||||
if [ -z "$sysconfdir" ] ; then
|
||||
sysconfdir=$prefix/etc
|
||||
fi
|
||||
|
||||
if [ ! $bindir ] ; then
|
||||
if [ -z "$bindir" ] ; then
|
||||
bindir=$exec_prefix/bin
|
||||
fi
|
||||
|
||||
if [ ! $CC ] ; then
|
||||
if [ -z "$CC" ] ; then
|
||||
CC=cc
|
||||
fi
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user