Return-Path: Delivered-To: apmail-apr-cvs-archive@apr.apache.org Received: (qmail 54182 invoked by uid 500); 10 Apr 2002 18:58:49 -0000 Mailing-List: contact cvs-help@apr.apache.org; run by ezmlm Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: Reply-To: dev@apr.apache.org Delivered-To: mailing list cvs@apr.apache.org Received: (qmail 54169 invoked from network); 10 Apr 2002 18:58:49 -0000 Date: 10 Apr 2002 18:58:48 -0000 Message-ID: <20020410185848.2487.qmail@icarus.apache.org> From: trawick@apache.org To: apr-cvs@apache.org Subject: cvs commit: apr configure.in X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N trawick 02/04/10 11:58:48 Modified: . configure.in Log: get the setting of the shared library environment variable name working on HP-UX HP-UX grep didn't handle the previous expression so we ended up with a null string which in turn resulted in a broken Apache envvars file Revision Changes Path 1.426 +4 -1 apr/configure.in Index: configure.in =================================================================== RCS file: /home/cvs/apr/configure.in,v retrieving revision 1.425 retrieving revision 1.426 diff -u -r1.425 -r1.426 --- configure.in 4 Apr 2002 21:35:43 -0000 1.425 +++ configure.in 10 Apr 2002 18:58:47 -0000 1.426 @@ -117,7 +117,10 @@ LTFLAGS='--silent' fi dnl get libtool's setting of shlibpath_var - eval `grep "^shlibpath_var=[[A-Z_]]\+$" $apr_builddir/libtool` + eval `grep "^shlibpath_var=[[A-Z_]]*$" $apr_builddir/libtool` + if test "x$shlibpath_var" = "x"; then + shlibpath_var=REPLACE_WITH_YOUR_SHLIBPATH_VAR + fi ;; esac