lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

bmake.passthru.setupHook: set some defaults

These are all read from the environment by the default bmake
stdlib (e.g. <bsd.prog.mk>, <bsd.own.mk>). Some of the default
values (like building cat pages instead of man pages, or stripping
binaries when installing) don't really make sense for Nixpkgs, so we
override them here for every build using bmake.

Eventually I'd like to unify the bmake setupHook and the NetBSD make
setupHook, but not today.

+11 -1
+10
pkgs/development/tools/build-managers/bmake/setup-hook.sh
··· 1 + addMakeFlags() { 2 + export prefix="$out" 3 + export MANDIR="${!outputMan}/share/man" 4 + export MANTARGET=man 5 + export BINOWN= 6 + export STRIP_FLAG= 7 + } 8 + 9 + preConfigureHooks+=(addMakeFlags) 10 + 1 11 bmakeBuildPhase() { 2 12 runHook preBuild 3 13
+1 -1
pkgs/servers/http/bozohttpd/default.nix
··· 68 68 ++ optional (stdenv.hostPlatform.libc != "libSystem") "-lcrypt" 69 69 ++ optional (luaSupport) "-llua" 70 70 ++ optionals (sslSupport) [ "-lssl" "-lcrypto" ]; 71 - makeFlags = [ "LDADD=$(_LDADD)" "prefix=$(out)" "MANDIR=$(out)/share/man" "BINOWN=" ]; 71 + makeFlags = [ "LDADD=$(_LDADD)" ]; 72 72 73 73 doCheck = true; 74 74 checkInputs = [ inetutils wget ];