aboutsummaryrefslogtreecommitdiff
path: root/ltmain.sh
diff options
context:
space:
mode:
Diffstat (limited to 'ltmain.sh')
-rw-r--r--ltmain.sh12
1 files changed, 10 insertions, 2 deletions
diff --git a/ltmain.sh b/ltmain.sh
index 06823e05..c715b594 100644
--- a/ltmain.sh
+++ b/ltmain.sh
@@ -43,7 +43,7 @@ EXIT_FAILURE=1
43 43
44PROGRAM=ltmain.sh 44PROGRAM=ltmain.sh
45PACKAGE=libtool 45PACKAGE=libtool
46VERSION=1.5.22 46VERSION="1.5.22 Debian 1.5.22-4"
47TIMESTAMP=" (1.1220.2.365 2005/12/18 22:14:06)" 47TIMESTAMP=" (1.1220.2.365 2005/12/18 22:14:06)"
48 48
49# See if we are running on zsh, and set the options which allow our 49# See if we are running on zsh, and set the options which allow our
@@ -2082,7 +2082,10 @@ EOF
2082 case $pass in 2082 case $pass in
2083 dlopen) libs="$dlfiles" ;; 2083 dlopen) libs="$dlfiles" ;;
2084 dlpreopen) libs="$dlprefiles" ;; 2084 dlpreopen) libs="$dlprefiles" ;;
2085 link) libs="$deplibs %DEPLIBS% $dependency_libs" ;; 2085 link)
2086 libs="$deplibs %DEPLIBS%"
2087 test "X$link_all_deplibs" != Xno && libs="$libs $dependency_libs"
2088 ;;
2086 esac 2089 esac
2087 fi 2090 fi
2088 if test "$pass" = dlopen; then 2091 if test "$pass" = dlopen; then
@@ -3201,6 +3204,11 @@ EOF
3201 age="$number_minor" 3204 age="$number_minor"
3202 revision="$number_minor" 3205 revision="$number_minor"
3203 ;; 3206 ;;
3207 *)
3208 $echo "$modename: unknown library version type \`$version_type'" 1>&2
3209 $echo "Fatal configuration error. See the $PACKAGE docs for more information." 1>&2
3210 exit $EXIT_FAILURE
3211 ;;
3204 esac 3212 esac
3205 ;; 3213 ;;
3206 no) 3214 no)