From: Richard W.M. Jones Date: Mon, 6 Dec 2010 21:24:59 +0000 (+0000) Subject: appliance: Don't quote the --exclude parameters. X-Git-Tag: 1.7.20~14 X-Git-Url: http://git.annexia.org/?a=commitdiff_plain;h=1e78cd1690f15a45f80d384edca9b7b868b9b802;p=libguestfs.git appliance: Don't quote the --exclude parameters. The quotes appear literally on the command line: $ s="--foo 'bar'" $ echo $s --foo 'bar' --- diff --git a/appliance/make.sh.in b/appliance/make.sh.in index 9e54b4a..3b51fcf 100755 --- a/appliance/make.sh.in +++ b/appliance/make.sh.in @@ -21,7 +21,7 @@ unset CDPATH set -e # XXX Distro-dependent in future. -excludes="--exclude '^perl' --exclude '^python' --exclude '^fedora-logos' --exclude '^redhat-logos' --exclude '^dracut' --exclude '^upstart' --exclude '^plymouth' --exclude '^systemd' --exclude '^linux-firmware' --exclude '^kbd-misc'" +excludes="--exclude ^perl --exclude ^python --exclude ^fedora-logos --exclude ^redhat-logos --exclude ^dracut --exclude ^upstart --exclude ^plymouth --exclude ^systemd --exclude ^linux-firmware --exclude ^kbd-misc" # Run febootstrap on the package list. if [ "x@FEBOOTSTRAP_YUM_CONFIG@" != "xno" ]; then