From b0aa9c3a696991d01f1a64f75ff54fdeed7eee1b Mon Sep 17 00:00:00 2001 From: Michael Hutchinson Date: Mon, 17 Sep 2007 16:13:39 +0000 Subject: Attempt to get MD building again on monobuild. svn path=/trunk/monodevelop/; revision=85895 --- configure.in | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'configure.in') diff --git a/configure.in b/configure.in index 1083f95257..f582608fa8 100644 --- a/configure.in +++ b/configure.in @@ -322,21 +322,21 @@ fi #if MOZILLA_HOME is still empty, try to detect without pkg_config #(NOTE: any changes to this block should be kept in sync with the one in monodevelop.in) if !(test -n "$MOZILLA_HOME"); then - mozilla_script=`which mozilla 2> /dev/null` - firefox_script=`which firefox 2> /dev/null` + mozilla_script=$(which mozilla 2> /dev/null) + firefox_script=$(which firefox 2> /dev/null) if test -n "$MOZILLA_FIVE_HOME"; then MOZILLA_HOME=$MOZILLA_FIVE_HOME elif grep GRE_PATH /etc/gre.d/*.conf > /dev/null 2>&1 ; then MOZILLA_HOME=$(grep -h GRE_PATH= /etc/gre.d/*.conf | cut -d '"' -f 2 -d = | head -n 1) #" elif test -n "$mozilla_script" && grep "MOZILLA_FIVE_HOME=" $mozilla_script > /dev/null ; then - MOZILLA_HOME=`grep "MOZILLA_FIVE_HOME=" $mozilla_script | cut -d '"' -f 2 | cut -d '=' -f 2` + MOZILLA_HOME=$(grep "MOZILLA_FIVE_HOME=" $mozilla_script | cut -d '"' -f 2 | cut -d '=' -f 2) elif test -n "$firefox_script" ; then if grep "MOZILLA_FIVE_HOME=" $firefox_script > /dev/null ; then - MOZILLA_HOME=`grep "MOZILLA_FIVE_HOME=" $firefox_script | cut -d '"' -f 2 | cut -d '=' -f 2` + MOZILLA_HOME=$(grep "MOZILLA_FIVE_HOME=" $firefox_script | cut -d '"' -f 2 | cut -d '=' -f 2) elif grep "MOZILLA_LIBDIR=" $firefox_script > /dev/null ; then - MOZILLA_HOME=`grep "MOZILLA_LIBDIR=" $firefox_script | cut -d '"' -f 2 | cut -d '=' -f 2` + MOZILLA_HOME=$(grep "MOZILLA_LIBDIR=" $firefox_script | cut -d '"' -f 2 | cut -d '=' -f 2) elif grep "moz_libdir=" $firefox_script > /dev/null ; then - MOZILLA_HOME=`grep "moz_libdir=" $firefox_script | cut -d '"' -f 2 | cut -d '=' -f 2` + MOZILLA_HOME=$(grep "moz_libdir=" $firefox_script | cut -d '"' -f 2 | cut -d '=' -f 2) fi fi if test -z "$MOZILLA_HOME"; then -- cgit v1.2.3