summaryrefslogtreecommitdiff
path: root/util-linux.morph
diff options
context:
space:
mode:
authorRichard Maw <richard.maw@codethink.co.uk>2012-05-14 17:33:51 +0100
committerRichard Maw <richard.maw@codethink.co.uk>2012-05-14 17:37:35 +0100
commit344335648937819da87ac30074952894a3d638c3 (patch)
tree851301beddbd6ceb6b70168e935de19d7767daa4 /util-linux.morph
parent603d1ed88703d5d593ea1c7e60c1d31cf43364c6 (diff)
downloadutil-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-xutil-linux.morph9
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"
]
}