treewide: remove accidentally introduced -l

they were all removed in
c2b898da76
but these changes were made before that and merged after it
This commit is contained in:
Artturin 2023-01-19 15:07:45 +02:00
parent f46ee73ba6
commit e59b23d062
3 changed files with 3 additions and 3 deletions

View file

@ -18,7 +18,7 @@ import ./make-test-python.nix ({ pkgs, ... }: {
buildPhase = ''
runHook preBuild
# just build the static lib we need for the go test binary
make $makeFlags ''${enableParallelBuilding:+-j$NIX_BUILD_CORES -l$NIX_BUILD_CORES} bpf-core ./dist/btfhub
make $makeFlags ''${enableParallelBuilding:+-j$NIX_BUILD_CORES} bpf-core ./dist/btfhub
# remove the /usr/bin prefix to work with the patch above
substituteInPlace tests/integration/integration_test.go \

View file

@ -59,7 +59,7 @@ buildPythonPackage rec {
# pkgs/development/interpreters/python/hooks/pip-build-hook.sh
# does not use the enableParallelBuilding flag
postUnpack = ''
export MAKEFLAGS+=" -j$NIX_BUILD_CORES -l$NIX_BUILD_CORES"
export MAKEFLAGS+=" -j$NIX_BUILD_CORES"
'';
outputs = [ "out" "dev" ];

View file

@ -40,7 +40,7 @@ buildPythonPackage rec {
# pkgs/development/interpreters/python/hooks/pip-build-hook.sh
# does not use the enableParallelBuilding flag
postUnpack = ''
export MAKEFLAGS+=" -j$NIX_BUILD_CORES -l$NIX_BUILD_CORES"
export MAKEFLAGS+=" -j$NIX_BUILD_CORES"
'';
outputs = [ "out" "dev" ];