]> git.ipfire.org Git - thirdparty/libtool.git/commitdiff
From Thomas Poindessous <poinde_t@epita.fr>
authorOssama Othman <ossama@debian.org>
Wed, 25 Jul 2001 23:20:15 +0000 (23:20 +0000)
committerOssama Othman <ossama@debian.org>
Wed, 25 Jul 2001 23:20:15 +0000 (23:20 +0000)
* ltmain.in (pic_mode):  Added missing quotes around shell
variable in "if test" conditional.

From Peter Moulder <pmoulder@longford.csse.monash.edu.au>
* ltmain.in (xform): Add support for pre-processed
(e.g. `*.{i,ii}' sources).

* THANKS:  Added Albert Chin-A-Young.

ChangeLog
ltmain.in

index 2d412c31a824f5db7b137c00735e8599f8d4fd38..4665817cd0b09722a4c376b584a0f260aa391f3a 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,13 @@
+2001-07-25  Ossama Othman  <ossama@debian.org>
+
+       From Thomas Poindessous <poinde_t@epita.fr>
+       * ltmain.in (pic_mode):  Added missing quotes around shell
+       variable in "if test" conditional.
+
+       From Peter Moulder <pmoulder@longford.csse.monash.edu.au>
+       * ltmain.in (xform): Add support for pre-processed
+       (e.g. `*.{i,ii}' sources).
+
 2001-07-25  Gary V. Vaughan  <gary@gnu.org>
 
        From Steve Ellcey <sje@cup.hp.com>:
        
 2001-06-25  Gary V. Vaughan  <gary@gnu.org>
 
-       * THANKS:  Aded Albert Chin-A-Young.
+       * THANKS:  Added Albert Chin-A-Young.
        
        * libtool.m4 (IFS): When IFS is changed to split a string for
        examination in a loop, restore it inside the loop as well as
index 70efb3c3875f69f69b1278e523881cacf7ea5327..97f4091f62d1a0e3a7b08b22e6340c2d1d1ac566 100644 (file)
--- a/ltmain.in
+++ b/ltmain.in
@@ -461,7 +461,7 @@ if test -z "$show_help"; then
 
     # Recognize several different file suffixes.
     # If the user specifies -o file.o, it is replaced with file.lo
-    xform='[cCFSfmso]'
+    xform='[cCFSifmso]'
     case $libobj in
     *.ada) xform=ada ;;
     *.adb) xform=adb ;;
@@ -469,6 +469,7 @@ if test -z "$show_help"; then
     *.asm) xform=asm ;;
     *.c++) xform=c++ ;;
     *.cc) xform=cc ;;
+    *.ii) xform=ii ;;
     *.class) xform=class ;;
     *.cpp) xform=cpp ;;
     *.cxx) xform=cxx ;;
@@ -562,7 +563,7 @@ if test -z "$show_help"; then
       pic_mode=default
       ;;
     esac
-    if test $pic_mode = no && test "$deplibs_check_method" != pass_all; then
+    if test "$pic_mode" = no && test "$deplibs_check_method" != pass_all; then
       # non-PIC code in shared libraries is not supported
       pic_mode=default
     fi