iso/pkgmk.conf
Juergen Daubert 0597a4a377 Makefile: new variable PKGMK_CONF, added pkgmk.conf
To save space we compress our packages for the ISO with xz, but the
default for pkgmk should still be gz, because of performance issues
with xz. To solve this we overwrite /etc/pkgmk.conf in our build
environment with a spezial one that's part of our iso.git. As a side
effect we can set now other things like MAKEFLAGS and PKGMK_WORK_DIR
as well.
2010-06-26 16:01:42 +02:00

22 lines
420 B
Plaintext

#
# /etc/pkgmk.conf: pkgmk(8) configuration
#
export MAKEFLAGS="-j5"
export CFLAGS="-O2 -march=i686 -pipe"
export CXXFLAGS="-O2 -march=i686 -pipe"
# PKGMK_SOURCE_MIRRORS=()
# PKGMK_SOURCE_DIR="$PWD"
# PKGMK_PACKAGE_DIR="$PWD"
# PKGMK_WORK_DIR="$PWD/work"
# PKGMK_DOWNLOAD="no"
# PKGMK_IGNORE_FOOTPRINT="no"
# PKGMK_IGNORE_NEW="no"
# PKGMK_NO_STRIP="no"
# PKGMK_WGET_OPTS=""
PKGMK_COMPRESSION_MODE="xz"
# End of file