diff options
author | Erik Troan <ewt@redhat.com> | 2000-04-19 19:02:53 +0000 |
---|---|---|
committer | Erik Troan <ewt@redhat.com> | 2000-04-19 19:02:53 +0000 |
commit | 68d4c1df88943f29669336e11bc8767dd0ed37d0 (patch) | |
tree | f3b2bf7829d569e36637716779b002b881d7d0fe /scripts/mk-images | |
parent | fb107df7afb8616f51f33988b0f49e7ed8d555db (diff) | |
download | anaconda-68d4c1df88943f29669336e11bc8767dd0ed37d0.tar.gz anaconda-68d4c1df88943f29669336e11bc8767dd0ed37d0.tar.xz anaconda-68d4c1df88943f29669336e11bc8767dd0ed37d0.zip |
changed $$ stuff
Diffstat (limited to 'scripts/mk-images')
-rwxr-xr-x | scripts/mk-images | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/scripts/mk-images b/scripts/mk-images index 289be0eeb..2dad4568d 100755 --- a/scripts/mk-images +++ b/scripts/mk-images @@ -19,7 +19,7 @@ TOPDIR=$(cd $TOPDIR; pwd) IMAGEPATH=$2 FULLMODPATH=$3 IMGPATH=$(echo $FULLMODPATH | sed 's,/[^/]*$,,') - KERNELROOT=/tmp/updboot.kernel + KERNELROOT=/tmp/updboot.kernel.$$ MODDEPS=$KERNELROOT/moddeps ARCH=$(uname -m | sed 's/i.86/i386/') @@ -218,11 +218,11 @@ makebootdisk() { MBD_FILENAME=$IMAGEPATH/$1 LOADERBIN=$2 MODSET=`expandModuleSet "$3"` - MBD_DIR=/tmp/makebootdisk.dir - MBD_FSIMAGE=/tmp/makebootdisk.initrdimage - MBD_MNTPOINT=/tmp/makebootdisk.mount - MBD_TMPIMAGE=/tmp/makebootdisk.image - MBD_BOOTTREE=/tmp/makebootdisk.tree + MBD_DIR=/tmp/makebootdisk.dir.$$ + MBD_FSIMAGE=/tmp/makebootdisk.initrdimage.$$ + MBD_MNTPOINT=/tmp/makebootdisk.mount.$$ + MBD_TMPIMAGE=/tmp/makebootdisk.image.$$ + MBD_BOOTTREE=/tmp/makebootdisk.tree.$$ INITBIN=init rm -rf $MBD_DIR MBD_FSIMAGE |