Fix bug in ranlib.sh script - quote the $1 argument in case it contains spaces

This commit is contained in:
Nick Clifton
2004-04-30 07:37:15 +00:00
parent 520ceea489
commit f893589578
2 changed files with 6 additions and 2 deletions

View File

@@ -1,4 +1,8 @@
2004-04-27 John Paul Wallington <jpw@gnu.org>
2004-04-30 Michael Deutschmann <michael@talamasca.ocis.net>
* ranlib.sh: Quote $1 argument in case it contains spaces.
2004-04-27 John Paul Wallington <jpw@gnu.org>
* objcopy.c (copy_usage, strip_usage): Fix spelling.

View File

@@ -1,3 +1,3 @@
#!/bin/sh
# A simple ranlib script, to use less disk space than a ranlib program.
ar s $1
ar s "$1"