Add check to see if 'cd $MOZ_TOOLS && pwd` failed.
git-svn-id: svn://10.0.0.236/trunk@113558 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
643
mozilla/configure
vendored
643
mozilla/configure
vendored
File diff suppressed because it is too large
Load Diff
@@ -966,7 +966,10 @@ case "$target" in
|
||||
fi
|
||||
|
||||
if test "$MOZ_TOOLS"; then
|
||||
_MOZTOOLS=`cd $MOZ_TOOLS ; pwd`
|
||||
_MOZTOOLS=`cd $MOZ_TOOLS && pwd`
|
||||
if test "$?" != "0" || test -z "$_MOZTOOLS"; then
|
||||
AC_MSG_ERROR([cd \$MOZ_TOOLS failed. MOZ_TOOLS ==? $MOZ_TOOLS])
|
||||
fi
|
||||
_MOZTOOLS=`echo $_MOZTOOLS | sed -e 's|^/cygdrive/||' -e 's|/|:/|'`
|
||||
GLIB_CFLAGS="-I${_MOZTOOLS}/include"
|
||||
GLIB_LIBS="${_MOZTOOLS}/lib/glib-1.2.lib"
|
||||
|
||||
Reference in New Issue
Block a user