components/libpki/patches/03-libtool.patch
author Jiri Sasek <Jiri.Sasek@Oracle.COM>
Tue, 20 Dec 2016 05:20:38 -0800
branchs11u3-sru
changeset 7602 d86d5487437f
parent 6360 9d123b58131d
permissions -rw-r--r--
25296601 Upgrade Samba to 4.4.8 25298063 problem in UTILITY/SAMBA
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
6360
9d123b58131d PSARC/2016/217 Smartcard Reintroduction
Jan Parcel <jan.parcel@oracle.com>
parents:
diff changeset
     1
Patch origin: in-house
9d123b58131d PSARC/2016/217 Smartcard Reintroduction
Jan Parcel <jan.parcel@oracle.com>
parents:
diff changeset
     2
Patch status: Solaris-specific; not suitable for upstream
9d123b58131d PSARC/2016/217 Smartcard Reintroduction
Jan Parcel <jan.parcel@oracle.com>
parents:
diff changeset
     3
9d123b58131d PSARC/2016/217 Smartcard Reintroduction
Jan Parcel <jan.parcel@oracle.com>
parents:
diff changeset
     4
eval doesn't work as expected with quotes on Solaris.
9d123b58131d PSARC/2016/217 Smartcard Reintroduction
Jan Parcel <jan.parcel@oracle.com>
parents:
diff changeset
     5
9d123b58131d PSARC/2016/217 Smartcard Reintroduction
Jan Parcel <jan.parcel@oracle.com>
parents:
diff changeset
     6
--- libpki-0.8.9/build/ltmain.sh	Tue Nov 10 13:50:30 2015
9d123b58131d PSARC/2016/217 Smartcard Reintroduction
Jan Parcel <jan.parcel@oracle.com>
parents:
diff changeset
     7
+++ libpki-0.8.9/build/ltmain.sh	Wed Nov 11 14:43:19 2015
9d123b58131d PSARC/2016/217 Smartcard Reintroduction
Jan Parcel <jan.parcel@oracle.com>
parents:
diff changeset
     8
@@ -657,7 +657,7 @@
9d123b58131d PSARC/2016/217 Smartcard Reintroduction
Jan Parcel <jan.parcel@oracle.com>
parents:
diff changeset
     9
     }
9d123b58131d PSARC/2016/217 Smartcard Reintroduction
Jan Parcel <jan.parcel@oracle.com>
parents:
diff changeset
    10
 
9d123b58131d PSARC/2016/217 Smartcard Reintroduction
Jan Parcel <jan.parcel@oracle.com>
parents:
diff changeset
    11
     if ${opt_dry_run-false}; then :; else
9d123b58131d PSARC/2016/217 Smartcard Reintroduction
Jan Parcel <jan.parcel@oracle.com>
parents:
diff changeset
    12
-      eval "$my_cmd"
9d123b58131d PSARC/2016/217 Smartcard Reintroduction
Jan Parcel <jan.parcel@oracle.com>
parents:
diff changeset
    13
+      eval $my_cmd
9d123b58131d PSARC/2016/217 Smartcard Reintroduction
Jan Parcel <jan.parcel@oracle.com>
parents:
diff changeset
    14
       my_status=$?
9d123b58131d PSARC/2016/217 Smartcard Reintroduction
Jan Parcel <jan.parcel@oracle.com>
parents:
diff changeset
    15
       if test "$my_status" -eq 0; then :; else
9d123b58131d PSARC/2016/217 Smartcard Reintroduction
Jan Parcel <jan.parcel@oracle.com>
parents:
diff changeset
    16
 	eval "(exit $my_status); $my_fail_exp"