Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/monodevelop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Hutchinson <mhutchinson@novell.com>2007-09-17 20:13:39 +0400
committerMichael Hutchinson <mhutchinson@novell.com>2007-09-17 20:13:39 +0400
commitb0aa9c3a696991d01f1a64f75ff54fdeed7eee1b (patch)
tree71612297edbee12fa28558d92d203424f41a8f67 /configure.in
parentc6a325e07c6a456bb9b2608d01909c44c327aa3c (diff)
Attempt to get MD building again on monobuild.
svn path=/trunk/monodevelop/; revision=85895
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in12
1 files changed, 6 insertions, 6 deletions
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