changeset 5803:df7c75ab2e13

(Options): Make --symlink mean --symbolic.
author Simon Josefsson <simon@josefsson.org>
date Tue, 19 Apr 2005 07:52:49 +0000
parents 94a03274f562
children 09cfc6a21d7e
files ChangeLog gnulib-tool
diffstat 2 files changed, 7 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2005-04-19  Simon Josefsson  <jas@extundo.com>
+
+	* gnulib-tool (Options): Make --symlink mean --symbolic.
+
 2005-03-14  Simon Josefsson  <jas@extundo.com>
 
 	* modules/getpass-gnu (Makefile.am): Don't mention getpass.h.
--- a/gnulib-tool
+++ b/gnulib-tool
@@ -22,7 +22,7 @@
 
 progname=$0
 package=gnulib
-cvsdatestamp='$Date: 2005-04-15 09:10:09 $'
+cvsdatestamp='$Date: 2005-04-19 07:52:49 $'
 last_checkin_date=`echo "$cvsdatestamp" | sed -e 's,^\$[D]ate: ,,'`
 version=`echo "$last_checkin_date" | sed -e 's/ .*$//' -e 's,/,-,g'`
 
@@ -95,7 +95,7 @@
       --libtool             Use libtool rules, for --import.
       --no-changelog        don't update or create ChangeLog files
       --dry-run             For --import, only print what would have been done.
-      --symbolic            Make symbolic links instead of copying files.
+      --symbolic, --symlink Make symbolic links instead of copying files.
 
 Report bugs to <bug-gnulib@gnu.org>."
 }
@@ -289,7 +289,7 @@
       --dry-run )
         dry_run=true
         shift ;;
-      --symbolic )
+      --symbolic | --symlink )
         symbolic=true
         shift ;;
       --help | --hel | --he | --h )