This repository has no description
0

Configure Feed

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

linux: don't create config if it already exists (#30)

+3 -1
+2
justfile
··· 30 30 exec just _nix build .#{{ pkg }} 31 31 fi 32 32 33 + mkdir -p overrides/{{ pkg }}/outputs 34 + 33 35 redirects=() 34 36 for package in $(ls overrides); do 35 37 for output in $(ls overrides/$package/outputs); do
+1 -1
packages/linux/package.nix
··· 52 52 command make -j$NIX_BUILD_CORES HOSTCC=${clang-host}/bin/clang TSC=true "$@" 53 53 } 54 54 55 - make defconfig ${lib.optionalString config.debug "debug.config"} 55 + test -f .config || make defconfig ${lib.optionalString config.debug "debug.config"} 56 56 57 57 # this is a horrible dirty hack but there's some non-deterministic build failure 58 58 for i in $(seq 1 3); do