diff options
author | Matt Wilson <msw@redhat.com> | 2000-06-17 21:50:54 +0000 |
---|---|---|
committer | Matt Wilson <msw@redhat.com> | 2000-06-17 21:50:54 +0000 |
commit | a83331c2a33a2738e8ec52759437db61a28492d9 (patch) | |
tree | 28329ae7c207afcf19d095ef56f689e17ad9f5e5 /scripts | |
parent | 56fac9e06be029195bd70bdacdad5b3bc738580b (diff) | |
download | anaconda-a83331c2a33a2738e8ec52759437db61a28492d9.tar.gz anaconda-a83331c2a33a2738e8ec52759437db61a28492d9.tar.xz anaconda-a83331c2a33a2738e8ec52759437db61a28492d9.zip |
drop the -a to make sure we don't get a symlink when copying the kernel over
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/mk-images | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/mk-images b/scripts/mk-images index 56b57fb25..1bc848ceb 100755 --- a/scripts/mk-images +++ b/scripts/mk-images @@ -516,7 +516,7 @@ makebootdisk() { if [ -n "$EXTRAKERNELPATH" ]; then mkdir -p `dirname $EXTRAKERNELPATH` - cp -af $KERNELROOT/boot/${KERNELNAME}-* $EXTRAKERNELPATH + cp -f $KERNELROOT/boot/${KERNELNAME}-* $EXTRAKERNELPATH fi mkdir -p `dirname $MBD_FILENAME` |