You are viewing a plain text version of this content. The canonical link for it is here.
Posted to site-cvs@tcl.apache.org by mx...@apache.org on 2016/03/17 23:05:11 UTC

svn commit: r1735509 [1/4] - in /tcl/rivet/branches/2.3: ChangeLog Makefile.in tclconfig/install-sh tclconfig/libtool.m4 tclconfig/ltmain.sh tclconfig/tcl.m4

Author: mxmanghi
Date: Thu Mar 17 22:05:11 2016
New Revision: 1735509

URL: http://svn.apache.org/viewvc?rev=1735509&view=rev
Log:
    * tclconfig/tcl.m4,install-sh,ltmain.sh,libtool.m4: updating autotools and libtool macros to the latest versions available


Modified:
    tcl/rivet/branches/2.3/ChangeLog
    tcl/rivet/branches/2.3/Makefile.in
    tcl/rivet/branches/2.3/tclconfig/install-sh
    tcl/rivet/branches/2.3/tclconfig/libtool.m4
    tcl/rivet/branches/2.3/tclconfig/ltmain.sh
    tcl/rivet/branches/2.3/tclconfig/tcl.m4

Modified: tcl/rivet/branches/2.3/ChangeLog
URL: http://svn.apache.org/viewvc/tcl/rivet/branches/2.3/ChangeLog?rev=1735509&r1=1735508&r2=1735509&view=diff
==============================================================================
--- tcl/rivet/branches/2.3/ChangeLog (original)
+++ tcl/rivet/branches/2.3/ChangeLog Thu Mar 17 22:05:11 2016
@@ -1,3 +1,7 @@
+2016-03-17 Massimo Manghi <mx...@apache.org>
+    * tclconfig/tcl.m4,install-sh,ltmain.sh,libtool.m4: updating autotools 
+    and libtool macros to the latest versions available
+
 2016-03-07 Massimo Manghi <mx...@apache.org>
     * src/parser/rivetParser.c: Add Apache 2.0 mandatory copyright notice.
     removed unneed inclusion of config.h (cruft left over since many

Modified: tcl/rivet/branches/2.3/Makefile.in
URL: http://svn.apache.org/viewvc/tcl/rivet/branches/2.3/Makefile.in?rev=1735509&r1=1735508&r2=1735509&view=diff
==============================================================================
--- tcl/rivet/branches/2.3/Makefile.in (original)
+++ tcl/rivet/branches/2.3/Makefile.in Thu Mar 17 22:05:11 2016
@@ -275,6 +275,8 @@ GREP = @GREP@
 INIT_VERSION = @INIT_VERSION@
 INSTALL = @INSTALL@
 INSTALL_DATA = @INSTALL_DATA@
+INSTALL_DATA_DIR = @INSTALL_DATA_DIR@
+INSTALL_LIBRARY = @INSTALL_LIBRARY@
 INSTALL_PROGRAM = @INSTALL_PROGRAM@
 INSTALL_SCRIPT = @INSTALL_SCRIPT@
 INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
@@ -289,6 +291,7 @@ LIBTOOL_DEPS = @LIBTOOL_DEPS@
 LIPO = @LIPO@
 LN_S = @LN_S@
 LTLIBOBJS = @LTLIBOBJS@
+LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@
 MAKEINFO = @MAKEINFO@
 MAKE_LIB = @MAKE_LIB@
 MAKE_SHARED_LIB = @MAKE_SHARED_LIB@
@@ -324,6 +327,7 @@ PKG_STUB_SOURCES = @PKG_STUB_SOURCES@
 PKG_TCL_SOURCES = @PKG_TCL_SOURCES@
 RANLIB = @RANLIB@
 RANLIB_STUB = @RANLIB_STUB@
+RC = @RC@
 RIVET_BASE_INCLUDE = @RIVET_BASE_INCLUDE@
 RIVET_TCL_TARGET = @RIVET_TCL_TARGET@
 RIVET_UPLOAD_DIR = @RIVET_UPLOAD_DIR@

Modified: tcl/rivet/branches/2.3/tclconfig/install-sh
URL: http://svn.apache.org/viewvc/tcl/rivet/branches/2.3/tclconfig/install-sh?rev=1735509&r1=1735508&r2=1735509&view=diff
==============================================================================
--- tcl/rivet/branches/2.3/tclconfig/install-sh (original)
+++ tcl/rivet/branches/2.3/tclconfig/install-sh Thu Mar 17 22:05:11 2016
@@ -1,7 +1,7 @@
 #!/bin/sh
 # install - install a program, script, or datafile
 
-scriptversion=2011-01-19.21; # UTC
+scriptversion=2011-04-20.01; # UTC
 
 # This originates from X11R5 (mit/util/scripts/install.sh), which was
 # later released in X11R6 (xc/config/util/install.sh) with the
@@ -120,6 +120,7 @@ Options:
   -m MODE       $chmodprog installed files to MODE.
   -o USER       $chownprog installed files to USER.
   -s            $stripprog installed files.
+  -S            $stripprog installed files.
   -t DIRECTORY  install into DIRECTORY.
   -T            report an error if DSTFILE is a directory.
 
@@ -155,11 +156,10 @@ while test $# -ne 0; do
 
     -s) stripcmd=$stripprog;;
 
+    -S) stripcmd="$stripprog $2"
+	shift;;
+
     -t) dst_arg=$2
-	# Protect names problematic for `test' and other utilities.
-	case $dst_arg in
-	  -* | [=\(\)!]) dst_arg=./$dst_arg;;
-	esac
 	shift;;
 
     -T) no_target_directory=true;;
@@ -190,10 +190,6 @@ if test $# -ne 0 && test -z "$dir_arg$ds
     fi
     shift # arg
     dst_arg=$arg
-    # Protect names problematic for `test' and other utilities.
-    case $dst_arg in
-      -* | [=\(\)!]) dst_arg=./$dst_arg;;
-    esac
   done
 fi
 
@@ -240,9 +236,9 @@ fi
 
 for src
 do
-  # Protect names problematic for `test' and other utilities.
+  # Protect names starting with `-'.
   case $src in
-    -* | [=\(\)!]) src=./$src;;
+    -*) src=./$src;;
   esac
 
   if test -n "$dir_arg"; then
@@ -264,7 +260,12 @@ do
       echo "$0: no destination specified." >&2
       exit 1
     fi
+
     dst=$dst_arg
+    # Protect names starting with `-'.
+    case $dst in
+      -*) dst=./$dst;;
+    esac
 
     # If destination is a directory, append the input filename; won't work
     # if double slashes aren't ignored.
@@ -392,7 +393,7 @@ do
 
       case $dstdir in
 	/*) prefix='/';;
-	[-=\(\)!]*) prefix='./';;
+	-*) prefix='./';;
 	*)  prefix='';;
       esac
 
@@ -410,7 +411,7 @@ do
 
       for d
       do
-	test X"$d" = X && continue
+	test -z "$d" && continue
 
 	prefix=$prefix$d
 	if test -d "$prefix"; then



---------------------------------------------------------------------
To unsubscribe, e-mail: site-cvs-unsubscribe@tcl.apache.org
For additional commands, e-mail: site-cvs-help@tcl.apache.org