From 572fcc62a68502d88247e1e36c64414ebeb63842 Mon Sep 17 00:00:00 2001 From: Ondrej Vasik Date: Mar 12 2009 15:12:15 +0000 Subject: fix broken stringparam option git-svn-id: https://svn.fedorahosted.org/svn/xmlto@3 eb1b79c1-ba03-4820-82f3-b60cf523859b --- diff --git a/THANKS b/THANKS index d05aae0..5f4d8ff 100644 --- a/THANKS +++ b/THANKS @@ -11,3 +11,4 @@ Shlomi Fish Braden McDaniel Andreas Hoenen Graham Wilson +Joseph Parmelee diff --git a/xmlto.in b/xmlto.in index 24ba478..e1df57c 100755 --- a/xmlto.in +++ b/xmlto.in @@ -273,8 +273,8 @@ while [ "$#" -gt "0" ]; do ;; --stringparam) MYPARAM="$2" - XSLTPARAMS="XSLTPARAMS --stringparam ${MYPARAM%=*}" - XSLTPARAMS="XSLTPARAMS $MYPARAM#*=}" + XSLTPARAMS="$XSLTPARAMS --stringparam ${MYPARAM%=*}" + XSLTPARAMS="$XSLTPARAMS ${MYPARAM#*=}" shift 2 ;; --noclean)