From 7a7f3065294cd3fb44658253c02c37fb3a8ccb4e Mon Sep 17 00:00:00 2001 From: Mark Huang Date: Fri, 28 Jul 2006 17:15:58 +0000 Subject: [PATCH] - use tar instead of cpio so that directories don't get created with 0700 perms --- bootcd.spec | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bootcd.spec b/bootcd.spec index d3ca071..391fec7 100644 --- a/bootcd.spec +++ b/bootcd.spec @@ -58,7 +58,7 @@ pushd bootcd # Install the reference image and build scripts install -d -m 755 $RPM_BUILD_ROOT/%{_datadir}/%{name} install -m 755 build.sh $RPM_BUILD_ROOT/%{_datadir}/%{name}/ -find \ +tar cpf - \ build/isofs/bootcd.img \ build/isofs/isolinux.bin \ build/isofs/kernel \ @@ -66,7 +66,7 @@ find \ build/version.txt \ configurations \ syslinux/unix/syslinux | \ - cpio -p -d -u $RPM_BUILD_ROOT/%{_datadir}/%{name}/ + tar -C $RPM_BUILD_ROOT/%{_datadir}/%{name}/ -xpf - # Install the default images in the download/ directory install -d -m 755 $RPM_BUILD_ROOT/var/www/html/download -- 2.43.0