aboutsummaryrefslogtreecommitdiff
path: root/config.def
diff options
context:
space:
mode:
authorCem Keylan <cem@ckyln.com>2021-08-14 17:18:59 +0300
committerCem Keylan <cem@ckyln.com>2021-08-14 17:18:59 +0300
commit76077bb7b0c0c69a24b9d8bdeab7e5dcda39aa62 (patch)
treef4250fa45ffdd1fed0a43a01a2612a368d325f59 /config.def
parentb8f6c141dd0dde3cf5cd25f723d1beb34f709fb5 (diff)
downloadmkrootfs-76077bb7b0c0c69a24b9d8bdeab7e5dcda39aa62.tar.gz
update defaults
Diffstat (limited to 'config.def')
-rw-r--r--config.def9
1 files changed, 4 insertions, 5 deletions
diff --git a/config.def b/config.def
index 5d44773..18ebdc4 100644
--- a/config.def
+++ b/config.def
@@ -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