diff options
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac index 37fb33e8d..60dde40e8 100644 --- a/configure.ac +++ b/configure.ac @@ -1852,12 +1852,17 @@ if test x"$enable_fpic" != x; then ;; esac fi + +dnl made libtool-nofpic silent and not installing plugins's .la files +cat libtool | sed -e 's/^show=\".*/show=\":\"/g' -e 's/# Install the pseudo\-library.*/continue/g' > libtool.tmp + if test x$no_fpic = "xyes"; then - cat libtool | sed -e 's/^pic_flag=/#pic_flag=/' > libtool-nofpic + cat libtool.tmp | sed -e 's/^pic_flag=/#pic_flag=/' > libtool-nofpic else - cat libtool > libtool-nofpic + cat libtool.tmp > libtool-nofpic fi +rm -f libtool.tmp chmod +x libtool-nofpic |