Skip to content

Commit

Permalink
fix bogus use of ! in configure
Browse files Browse the repository at this point in the history
  • Loading branch information
rofl0r committed Jan 30, 2012
1 parent e99dd76 commit 03b49f5
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions configure
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit 03b49f5

Please sign in to comment.