# # # patch "ChangeLog" # from [670275e76de6bbc2dff9c91d4be04fe3cb6e7093] # to [696f430b9596cccfa18a7ffab745167114fe0806] # # patch "configure.ac" # from [9ea33d30cbc295052c1ce443de46ff2974037b13] # to [a7a31091beeba59c197c639389ae5a284ce1a64c] # ============================================================ --- ChangeLog 670275e76de6bbc2dff9c91d4be04fe3cb6e7093 +++ ChangeLog 696f430b9596cccfa18a7ffab745167114fe0806 @@ -1,3 +1,8 @@ +2006-03-20 Matt Johnston + + * configure.ac: use test -f rather than test -e, since Solaris's + /bin/sh doesn't have the latter. + 2006-03-18 Matthew Gregan * automate.cc (automate_inventory): Add an MM(). ============================================================ --- configure.ac 9ea33d30cbc295052c1ce443de46ff2974037b13 +++ configure.ac a7a31091beeba59c197c639389ae5a284ce1a64c @@ -235,11 +235,11 @@ AC_MSG_CHECKING([location of static boost libraries]) for i in ${static_boost_prefixes} do - if test -e $i/lib64/libboost_regex${BOOST_SUFFIX}.a + if test -f $i/lib64/libboost_regex${BOOST_SUFFIX}.a then BOOST_LIBDIR=$i/lib64 fi - if test -e $i/lib/libboost_regex${BOOST_SUFFIX}.a + if test -f $i/lib/libboost_regex${BOOST_SUFFIX}.a then BOOST_LIBDIR=$i/lib fi