From fa0bb9f6b1435a8e6b0a340b51715aa899e24f82 Mon Sep 17 00:00:00 2001 From: Matthias Bolte Date: Wed, 26 May 2010 23:06:09 +0200 Subject: [PATCH] Use printf instead of echo -e in libvirt.spec.in make rpm created dummy tests containing '-e #!/bin/sh' for me. --- libvirt.spec.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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