From: Matthias Bolte Date: Wed, 26 May 2010 21:06:09 +0000 (+0200) Subject: Use printf instead of echo -e in libvirt.spec.in X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=fa0bb9f6b1435a8e6b0a340b51715aa899e24f82;p=libvirt.git Use printf instead of echo -e in libvirt.spec.in make rpm created dummy tests containing '-e #!/bin/sh' for me. --- diff --git a/libvirt.spec.in b/libvirt.spec.in index 20ccfda025..b8bd9ab60e 100644 --- a/libvirt.spec.in +++ b/libvirt.spec.in @@ -658,7 +658,7 @@ cd tests for i in nodeinfotest daemon-conf seclabeltest do rm -f $i - echo -e "#!/bin/sh\nexit 0" > $i + printf "#!/bin/sh\nexit 0\n" > $i chmod +x $i done make check