You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@apr.apache.org by je...@apache.org on 2003/08/25 01:10:25 UTC

cvs commit: apr apr-config.in

jerenkrantz    2003/08/24 16:10:25

  Modified:    .        apr-config.in
  Log:
  Don't prefix $(SHELL) on the apr-libtool argument, as we're not guaranteed
  that libtool is a shell script.
  
  Revision  Changes    Path
  1.36      +2 -2      apr/apr-config.in
  
  Index: apr-config.in
  ===================================================================
  RCS file: /home/cvs/apr/apr-config.in,v
  retrieving revision 1.35
  retrieving revision 1.36
  diff -u -u -r1.35 -r1.36
  --- apr-config.in	20 Jun 2003 16:35:55 -0000	1.35
  +++ apr-config.in	24 Aug 2003 23:10:25 -0000	1.36
  @@ -279,9 +279,9 @@
       ;;
       --apr-libtool)
       if test "$location" = "installed"; then
  -        echo "${SHELL} ${installbuilddir}/libtool"
  +        echo "${installbuilddir}/libtool"
       else
  -        echo "${SHELL} $thisdir/libtool"
  +        echo "$thisdir/libtool"
       fi
       exit 0
       ;;