diff options
author | Cem Keylan <cem@ckyln.com> | 2021-08-14 17:18:59 +0300 |
---|---|---|
committer | Cem Keylan <cem@ckyln.com> | 2021-08-14 17:18:59 +0300 |
commit | 76077bb7b0c0c69a24b9d8bdeab7e5dcda39aa62 (patch) | |
tree | f4250fa45ffdd1fed0a43a01a2612a368d325f59 | |
parent | b8f6c141dd0dde3cf5cd25f723d1beb34f709fb5 (diff) | |
download | mkrootfs-76077bb7b0c0c69a24b9d8bdeab7e5dcda39aa62.tar.gz |
update defaults
-rw-r--r-- | config.def | 9 |
1 files changed, 4 insertions, 5 deletions
@@ -9,8 +9,8 @@ MNTDIR="$PWD/rootfs" # List of packages to be installed # Most of those are already dependencies of each other but it is not a bad idea # to put them to the list anyway. -PKGS="baselayout otools cl-utils cpt musl gcc make gzip xz zlib bzip2 binutils - byacc libressl curl linux-headers m4 flex busybox pkgconf rsync git" +PKGS="baselayout musl otools cl-utils cpt gcc make gzip xz zlib bzip2 binutils + byacc libressl curl linux-headers flex busybox pkgconf rsync git" # BUILD FLAGS # It is a good idea to not use flags like "native". If you plan on using the @@ -34,9 +34,8 @@ HOST_REPO_PATH="/tmp/repo/core" export MNTDIR PKGS CFLAGS CXXFLAGS REPO HOST_REPO_PATH MAKEFLAGS postinstall() { - # You can preferably add some custom # commands if you want a - # postinstall procedure. This runs right after cpt-install is complete. - cpt a | grep ^otools | cpt a - + # Switch to busybox grep as OpenBSD grep is too POSIX for some build systems + cpt a busybox /usr/bin/grep } # vim:filetype=sh |