Add UIDS_AND_GIDS and global buildconf.

This commit is contained in:
Darren 'Tadgy' Austin 2022-09-07 14:03:30 +01:00
commit 91734b9455
2 changed files with 22 additions and 0 deletions

10
source/buildconf Normal file
View file

@ -0,0 +1,10 @@
# Use ccache if available.
CCACHE="$(command -v ccache)"
[[ -n "$CCACHE" ]] && {
BUILD_ALTCC="$CCACHE gcc"
BUILD_ALTCXX="$CCACHE g++"
}
unset CCACHE
# Override default package store location.
PKG_STORE='/data/slackware/repo/$DIST_OS_ID-$DIST_OS_VERSION_ID'