Check-in Number:
|
6002 | |
Date: |
2008-Jun-06 14:15:11 (local)
2008-Jun-06 12:15:11 (UTC) |
User: | rse |
Branch: | |
Comment: |
Fix argument handling in "shtool mkln" command |
Tickets: |
|
Inspections: |
|
Files: |
|
ossp-pkg/shtool/ChangeLog 1.239 -> 1.240
--- ChangeLog 2008/04/02 20:13:43 1.239
+++ ChangeLog 2008/06/06 12:15:11 1.240
@@ -11,6 +11,9 @@
Changes between 2.0.7 and 2.0.8 (19-May-2007 to xx-XXX-2007):
+ *) Fix argument handling in "shtool mkln" command.
+ [Christoph Schug]
+
*) Adjust copyright for year 2008.
[Ralf S. Engelschall]
|
|
ossp-pkg/shtool/sh.mkln 1.24 -> 1.25
--- sh.mkln 2008/04/02 20:13:43 1.24
+++ sh.mkln 2008/06/06 12:15:11 1.25
@@ -30,7 +30,7 @@
. ./sh.common
# determine source(s) and destination
-args=$?
+args=$#
srcs=""
while [ $# -gt 1 ]; do
srcs="$srcs $1"
|
|