X-Git-Url: https://git.notmuchmail.org/git?a=blobdiff_plain;f=configure;h=5e360d8c45d2116fad18aa28d09302e92076b1df;hb=bec47efeebf111b121db131b952e74106199810d;hp=c86a227cd7268fe622303efeb86ebf5063285574;hpb=d64d0cc8d9f9e9f23fa4432328db2ea4739bae0f;p=notmuch diff --git a/configure b/configure index c86a227c..5e360d8c 100755 --- a/configure +++ b/configure @@ -15,7 +15,7 @@ CXX=${CXX:-g++} CFLAGS=${CFLAGS:--O2} CXXFLAGS=${CXXFLAGS:-\$(CFLAGS)} LDFLAGS=${LDFLAGS:-} -XAPIAN_CONFIG=${XAPIAN_CONFIG:-xapian-config-1.1${tab}xapian-config} +XAPIAN_CONFIG=${XAPIAN_CONFIG:-xapian-config} # We don't allow the EMACS or GZIP Makefile variables inherit values # from the environment as we do with CC and CXX above. The reason is @@ -275,15 +275,16 @@ fi libdir_in_ldconfig=0 printf "Checking which platform we are on... " -if [ `uname` = "Darwin" ] ; then +uname=`uname` +if [ $uname = "Darwin" ] ; then printf "Mac OS X.\n" platform=MACOSX linker_resolves_library_dependencies=0 -elif [ `uname` = "SunOS" ] ; then +elif [ $uname = "SunOS" ] ; then printf "Solaris.\n" platform=SOLARIS linker_resolves_library_dependencies=0 -elif [ `uname` = "Linux" ] ; then +elif [ $uname = "Linux" ] ; then printf "Linux\n" platform=LINUX linker_resolves_library_dependencies=1