diff options
author | James <> | 2013-03-17 12:16:37 +0000 |
---|---|---|
committer | James <> | 2013-03-17 12:16:37 +0000 |
commit | 27b76ab0671089c47506615a796a261e993896a7 (patch) | |
tree | 61213d67e7fa87b20356b23798558e2c4212c42f /tools/libtool/patches/.svn/text-base/001-fix-func_append.patch.svn-base | |
download | trunk-36060-27b76ab0671089c47506615a796a261e993896a7.tar.gz trunk-36060-27b76ab0671089c47506615a796a261e993896a7.tar.bz2 trunk-36060-27b76ab0671089c47506615a796a261e993896a7.zip |
Diffstat (limited to 'tools/libtool/patches/.svn/text-base/001-fix-func_append.patch.svn-base')
-rw-r--r-- | tools/libtool/patches/.svn/text-base/001-fix-func_append.patch.svn-base | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/tools/libtool/patches/.svn/text-base/001-fix-func_append.patch.svn-base b/tools/libtool/patches/.svn/text-base/001-fix-func_append.patch.svn-base new file mode 100644 index 0000000..4c3c07b --- /dev/null +++ b/tools/libtool/patches/.svn/text-base/001-fix-func_append.patch.svn-base @@ -0,0 +1,22 @@ +--- a/libltdl/config/ltmain.m4sh ++++ b/libltdl/config/ltmain.m4sh +@@ -7261,7 +7261,7 @@ EOF + elif test -n "$runpath_var"; then + case "$perm_rpath " in + *" $libdir "*) ;; +- *) func_apped perm_rpath " $libdir" ;; ++ *) func_append perm_rpath " $libdir" ;; + esac + fi + done +--- a/libltdl/config/ltmain.sh ++++ b/libltdl/config/ltmain.sh +@@ -8050,7 +8050,7 @@ EOF + elif test -n "$runpath_var"; then + case "$perm_rpath " in + *" $libdir "*) ;; +- *) func_apped perm_rpath " $libdir" ;; ++ *) func_append perm_rpath " $libdir" ;; + esac + fi + done |