components/libpki/patches/03-libtool.patch
changeset 5897 495a9e2444e4
equal deleted inserted replaced
5896:f6a52b8a207c 5897:495a9e2444e4
       
     1 Patch origin: in-house
       
     2 Patch status: Solaris-specific; not suitable for upstream
       
     3 
       
     4 eval doesn't work as expected with quotes on Solaris.
       
     5 
       
     6 --- libpki-0.8.9/build/ltmain.sh	Tue Nov 10 13:50:30 2015
       
     7 +++ libpki-0.8.9/build/ltmain.sh	Wed Nov 11 14:43:19 2015
       
     8 @@ -657,7 +657,7 @@
       
     9      }
       
    10  
       
    11      if ${opt_dry_run-false}; then :; else
       
    12 -      eval "$my_cmd"
       
    13 +      eval $my_cmd
       
    14        my_status=$?
       
    15        if test "$my_status" -eq 0; then :; else
       
    16  	eval "(exit $my_status); $my_fail_exp"