diff options
author | Hajimu UMEMOTO <ume@FreeBSD.org> | 2003-07-02 09:42:15 +0000 |
---|---|---|
committer | Hajimu UMEMOTO <ume@FreeBSD.org> | 2003-07-02 09:42:15 +0000 |
commit | 3daa1a78aadc8353295e9bc0890cb8ade32b5bd6 (patch) | |
tree | 03a7610c1b4686d0ea53fc386f1bf8edc2a63afb /security | |
parent | e045dd5f10900ff8e7c9f859a7b3ef6ad0fecb10 (diff) |
Notes
Diffstat (limited to 'security')
-rw-r--r-- | security/cyrus-sasl2/files/patch-config::ltmain.sh | 20 |
1 files changed, 19 insertions, 1 deletions
diff --git a/security/cyrus-sasl2/files/patch-config::ltmain.sh b/security/cyrus-sasl2/files/patch-config::ltmain.sh index 9f453aa05c76..51dd0492008d 100644 --- a/security/cyrus-sasl2/files/patch-config::ltmain.sh +++ b/security/cyrus-sasl2/files/patch-config::ltmain.sh @@ -1,7 +1,25 @@ Index: config/ltmain.sh diff -u config/ltmain.sh.orig config/ltmain.sh --- config/ltmain.sh.orig Thu Jun 12 09:32:43 2003 -+++ config/ltmain.sh Tue Jul 1 01:07:11 2003 ++++ config/ltmain.sh Wed Jul 2 11:50:04 2003 +@@ -1901,7 +1901,7 @@ + deplib_matches=`eval \\$echo \"$library_names_spec\"` + set dummy $deplib_matches + deplib_match=$2 +- if test `expr "$ldd_output" : ".*$deplib_match"` -ne 0 ; then ++ if test `expr "X$ldd_output" : "X.*$deplib_match"` -ne 0 ; then + newdeplibs="$newdeplibs $i" + else + droppeddeps=yes +@@ -1931,7 +1931,7 @@ + deplib_matches=`eval \\$echo \"$library_names_spec\"` + set dummy $deplib_matches + deplib_match=$2 +- if test `expr "$ldd_output" : ".*$deplib_match"` -ne 0 ; then ++ if test `expr "X$ldd_output" : "X.*$deplib_match"` -ne 0 ; then + newdeplibs="$newdeplibs $i" + else + droppeddeps=yes @@ -1959,7 +1959,7 @@ set dummy $deplibs_check_method file_magic_regex="`expr \"$deplibs_check_method\" : \"$2 \(.*\)\"`" |