mirror of
https://github.com/archr-linux/Arch-R.git
synced 2026-03-31 14:41:55 -07:00
- replace mount and umount from busybox with this from util-linux-ng package for better compat
23 lines
419 B
Bash
Executable File
23 lines
419 B
Bash
Executable File
#!/bin/sh
|
|
|
|
. config/options
|
|
|
|
$SCRIPTS/build toolchain
|
|
|
|
cd $PKG_BUILD
|
|
gt_cv_func_gnugettext1_libintl=no \
|
|
./configure --host=$TARGET_NAME \
|
|
--build=$HOST_NAME \
|
|
--prefix=/usr \
|
|
--enable-shared \
|
|
--disable-static \
|
|
--disable-tls \
|
|
--without-ncurses
|
|
|
|
make -C fdisk sfdisk
|
|
make -C mount
|
|
make -C shlibs
|
|
make -C misc-utils blkid
|
|
|
|
$MAKEINSTALL -C shlibs
|