aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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