Commit b4a35c60 authored by Kazuhiko Shiozaki's avatar Kazuhiko Shiozaki

add a patch not to exclude '-Wl,*' from ldflags to add rpath in ext libraries.


git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@42695 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent d0dd4918
--- perl-5.12.3/Configure.orig 2011-01-09 21:20:52.000000000 +0100
+++ perl-5.12.3/Configure 2011-01-26 19:33:33.106561007 +0100
@@ -8092,16 +8092,7 @@
case "$dflt" in
none) dflt='' ;;
esac
- for thisflag in $ldflags; do
- case "$thisflag" in
- -L*|-R*|-Wl,-R*)
- case " $dflt " in
- *" $thisflag "*) ;;
- *) dflt="$dflt $thisflag" ;;
- esac
- ;;
- esac
- done
+ dflt="$dflt $ldflags"
case "$dflt" in
''|' ') dflt='none' ;;
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment