Force uid and gid to 0 when building the CD. This avoids taking over foreign

user and group ids on build platforms that support them. Fixes #4458.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@33066 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Michael Lotz
2009-09-11 18:12:16 +00:00
parent 1bcca32a9e
commit 5be3cdb679
+1 -1
View File
@@ -147,7 +147,7 @@ $cp "$cdBootFloppy" "$outputDir"
# build the iso image
echo "Building CD image ..."
mkisofs -b `basename $cdBootFloppy` -U -R -V "$cdLabel" -o "$cdImagePath" "$tPrefix"
mkisofs -uid 0 -gid 0 -b `basename $cdBootFloppy` -U -R -V "$cdLabel" -o "$cdImagePath" "$tPrefix"
# cleanup output dir
$rmAttrs -rf "$outputDir"