]> granicus.if.org Git - apache/blobdiff - build/install-bindist.sh.in
Merge the AP_OPENSSL_USE_ERRNO_THREADID check to trunk for wider testing
[apache] / build / install-bindist.sh.in
index 314be2d4d5228c4a340512334802fa23b09dba37..f304ac7c8088e75647ce89e141ce42a05e920e5a 100755 (executable)
@@ -1,5 +1,21 @@
 #!/bin/sh
 #
+# Licensed to the Apache Software Foundation (ASF) under one or more
+# contributor license agreements.  See the NOTICE file distributed with
+# this work for additional information regarding copyright ownership.
+# The ASF licenses this file to You under the Apache License, Version 2.0
+# (the "License"); you may not use this file except in compliance with
+# the License.  You may obtain a copy of the License at
+#
+#     http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+#
+#
 # Usage: install-bindist.sh [ServerRoot]
 # This script installs the Apache binary distribution and
 # was automatically created by binbuild.sh.
@@ -50,16 +66,21 @@ lcopy()
 PERL=no-perl5-on-this-system
 perls='perl5 perl'
 path=`echo $PATH | sed -e 's/:/ /g'`
+found_perl=0
  
 for dir in ${path} ;  do
   for pperl in ${perls} ; do
     if test -f "${dir}/${pperl}" ; then
       if `${dir}/${pperl} -v >/dev/null 2>&1` ; then
         PERL="${dir}/${pperl}"
+        found_perl=1
         break
       fi
     fi
   done
+  if test $found_perl = 1 ; then
+    break
+  fi
 done
  
 if [ .$1 = . ]