diff options
| author | Richard Maw <richard.maw@codethink.co.uk> | 2012-05-14 17:33:51 +0100 |
|---|---|---|
| committer | Richard Maw <richard.maw@codethink.co.uk> | 2012-05-14 17:37:35 +0100 |
| commit | 344335648937819da87ac30074952894a3d638c3 (patch) | |
| tree | 851301beddbd6ceb6b70168e935de19d7767daa4 /util-linux.morph | |
| parent | 603d1ed88703d5d593ea1c7e60c1d31cf43364c6 (diff) | |
| download | util-linux-baserock/bootstrap.tar.gz | |
util-linux.morph: update the morphologybaserock/bootstrap
Bootstrap uses busybox now, to make things a little faster, however
this means the programs installed by util-linux will overlap.
Currently this overlap causes busybox to be overwritten, which is a
bug as well, but so is the overlap.
Diffstat (limited to 'util-linux.morph')
| -rwxr-xr-x | util-linux.morph | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/util-linux.morph b/util-linux.morph index 7cd88678a..cef6fd498 100755 --- a/util-linux.morph +++ b/util-linux.morph @@ -1,13 +1,12 @@ { "name": "util-linux", "kind": "chunk", + "build-system": "autotools", "configure-commands": [ - "./configure --prefix=/usr" - ], - "build-commands": [ - "make" + "./configure --prefix=\"$PREFIX\"" ], "install-commands": [ - "make DESTDIR=\"$DESTDIR\" install" + "make DESTDIR=\"$DESTDIR\" install", + "for prog in blkid blockdev cal chrt dmesg fdisk findfs flock fsck hexdump hwclock ipcrm ipcs logger mkswap more mount mountpoint pivot_root readprofile renice script setsid swapoff swapon switch_root umount; do find \"$DESTDIR\" -name \"$prog\" -delete; done" ] } |
