diff options
author | Dennis Stosberg <dennis@stosberg.net> | 2006-06-27 18:54:26 +0200 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2006-06-27 10:56:05 -0700 |
commit | 8096fae7269e7b3882394100151bc017446b01a1 (patch) | |
tree | 6af8bf52f3ba424d52e3d3d2858e72a9790a38ca /git-quiltimport.sh | |
parent | 1ef9e05dbf36a80bb65fb150dd7bdd60852db777 (diff) | |
download | git-8096fae7269e7b3882394100151bc017446b01a1.tar.gz |
Fix expr usage for FreeBSD
Some implementations of "expr" (e.g. FreeBSD's) fail, if an
argument starts with a dash.
Signed-off-by: Dennis Stosberg <dennis@stosberg.net>
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'git-quiltimport.sh')
-rwxr-xr-x | git-quiltimport.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/git-quiltimport.sh b/git-quiltimport.sh index 12d9d0cbc9..86b51abd21 100755 --- a/git-quiltimport.sh +++ b/git-quiltimport.sh @@ -9,7 +9,7 @@ while case "$#" in 0) break;; esac do case "$1" in --au=*|--aut=*|--auth=*|--autho=*|--author=*) - quilt_author=$(expr "$1" : '-[^=]*\(.*\)') + quilt_author=$(expr "z$1" : 'z-[^=]*\(.*\)') shift ;; @@ -26,7 +26,7 @@ do ;; --pa=*|--pat=*|--patc=*|--patch=*|--patche=*|--patches=*) - QUILT_PATCHES=$(expr "$1" : '-[^=]*\(.*\)') + QUILT_PATCHES=$(expr "z$1" : 'z-[^=]*\(.*\)') shift ;; |