diff options
author | Daniel Caujolle-Bert <f1rmb@users.sourceforge.net> | 2003-10-14 21:58:22 +0000 |
---|---|---|
committer | Daniel Caujolle-Bert <f1rmb@users.sourceforge.net> | 2003-10-14 21:58:22 +0000 |
commit | 90a24be6db150d94d8ceea2b1f56dff8a2880d01 (patch) | |
tree | f2c598a982d1ef6fe4c97cdb781c70a28ecf8ab0 /configure.ac | |
parent | 663b38cc9d22bc6efd3803f957c18b2df893b51a (diff) | |
download | xine-lib-90a24be6db150d94d8ceea2b1f56dff8a2880d01.tar.gz xine-lib-90a24be6db150d94d8ceea2b1f56dff8a2880d01.tar.bz2 |
made libtool-nofpic silent and not installing .la files at all
CVS patchset: 5519
CVS date: 2003/10/14 21:58:22
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 |