~ubuntu-branches/ubuntu/gutsy/gtkglext/gutsy

« back to all changes in this revision

Viewing changes to ltmain.sh

  • Committer: Bazaar Package Importer
  • Author(s): Marcelo E. Magallon
  • Date: 2004-04-03 17:43:17 UTC
  • Revision ID: james.westby@ubuntu.com-20040403174317-8gk1ptqfk5qoxerr
Tags: 1.0.6-1
* New upstream release
* Throw away NMU 1.0.0-1.1 (thanks Sebastian, it's nevertheless
  appreciated), this problem has been fixed upstream, this would have
  been the proper fix in the first place.  My apologies for the long
  delay Teemu.  (closes: bug#226894)
* Regenerate all the automake and autoconf stuff
      libtoolize (GNU libtool) 1.5.2
      aclocal (GNU automake) 1.7.9
      automake (GNU automake) 1.7.9
      autoconf (GNU Autoconf) 2.59
* debian/control: Standards Version 3.6.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
56
56
PROGRAM=ltmain.sh
57
57
PACKAGE=libtool
58
58
VERSION=1.5.2
59
 
TIMESTAMP=" (1.1220.2.60 2004/01/25 12:25:08)"
 
59
TIMESTAMP=" (1.1220.2.60 2004/01/25 12:25:08) Debian$Rev: 199 $"
60
60
 
61
61
default_mode=
62
62
help="Try \`$progname --help' for more information."
1828
1828
        case $pass in
1829
1829
        dlopen) libs="$dlfiles" ;;
1830
1830
        dlpreopen) libs="$dlprefiles" ;;
1831
 
        link) libs="$deplibs %DEPLIBS% $dependency_libs" ;;
 
1831
        link)
 
1832
          libs="$deplibs %DEPLIBS%"
 
1833
          test "X$link_all_deplibs" != Xno && libs="$libs $dependency_libs"
 
1834
          ;;
1832
1835
        esac
1833
1836
      fi
1834
1837
      if test "$pass" = dlopen; then
1936
1939
            fi
1937
1940
            if test "$pass" = scan; then
1938
1941
              deplibs="$deplib $deplibs"
1939
 
              newlib_search_path="$newlib_search_path "`$echo "X$deplib" | $Xsed -e 's/^-L//'`
1940
1942
            else
1941
1943
              compile_deplibs="$deplib $compile_deplibs"
1942
1944
              finalize_deplibs="$deplib $finalize_deplibs"
1943
1945
            fi
 
1946
            newlib_search_path="$newlib_search_path "`$echo "X$deplib" | $Xsed -e 's/^-L//'`
1944
1947
            ;;
1945
1948
          *)
1946
1949
            $echo "$modename: warning: \`-L' is ignored for archives/objects" 1>&2
3097
3100
            *.$objext)
3098
3101
               ;;
3099
3102
            $output_objdir/$outputname | $output_objdir/$libname.* | $output_objdir/${libname}${release}.*)
3100
 
               if echo $p | $EGREP -e "$precious_files_regex" >/dev/null 2>&1
3101
 
               then
3102
 
                 continue
 
3103
               if test "X$precious_files_regex" != "X"; then
 
3104
                 if echo $p | $EGREP -e "$precious_files_regex" >/dev/null 2>&1
 
3105
                 then
 
3106
                   continue
 
3107
                 fi
3103
3108
               fi
3104
3109
               removelist="$removelist $p"
3105
3110
               ;;
5673
5678
              tmpdir="/tmp"
5674
5679
              test -n "$TMPDIR" && tmpdir="$TMPDIR"
5675
5680
              tmpdir="$tmpdir/libtool-$$"
5676
 
              if $mkdir "$tmpdir" && chmod 700 "$tmpdir"; then :
 
5681
              save_umask=`umask`
 
5682
              umask 0077
 
5683
              if $mkdir "$tmpdir"; then
 
5684
                umask $save_umask
5677
5685
              else
 
5686
                umask $save_umask
5678
5687
                $echo "$modename: error: cannot create temporary directory \`$tmpdir'" 1>&2
5679
5688
                continue
5680
5689
              fi