Commit 713abf7b authored by Graham Leggett's avatar Graham Leggett
Browse files

Add inverted commas to the build script parameter so that it works correctly...

Add inverted commas to the build script parameter so that it works correctly when which outputs an empty string.


git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@159479 13f79535-47bb-0310-9956-ffa450edef68
parent bda924d6
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -50,13 +50,13 @@ do
  shift
done

if [ ! -f $apr_config -a ! -f $apr_config/configure.in ]; then
if [ ! -f "$apr_config" -a ! -f "$apr_config/configure.in" ]; then
  echo "The apr source directory / apr-1-config could not be found"
  echo "Usage: buildpkg [--with-apr=[dir|file]] [--with-apr-util=[dir|file]]"
  exit 1
fi

if [ ! -f $apu_config -a ! -f $apu_config/configure.in ]; then
if [ ! -f "$apu_config" -a ! -f "$apu_config/configure.in" ]; then
  echo "The apu source directory / apu-1-config could not be found"
  echo "Usage: buildpkg [--with-apr=[dir|file]] [--with-apr-util=[dir|file]]"
  exit 1