Rename buildNativeInputs -> nativeBuildInputs

Likewise for propagatedBuildNativeInputs, etc.  "buildNativeInputs"
sounds like an imperative rather than a noun phrase.
This commit is contained in:
Eelco Dolstra
2012-12-28 19:20:09 +01:00
parent 5be0a9acd7
commit ab3eeabfed
363 changed files with 416 additions and 416 deletions
+2 -2
View File
@@ -26,7 +26,7 @@ postInstall() {
for p in $nativePkgs; do
if test -e $p/lib/pkgconfig/$r.pc; then
echo " found requisite $r in $p"
propagatedBuildNativeInputs="$propagatedBuildNativeInputs $p"
propagatedNativeBuildInputs="$propagatedNativeBuildInputs $p"
fi
done
fi
@@ -34,7 +34,7 @@ postInstall() {
mkdir -p "$out/nix-support"
echo "$propagatedBuildInputs" > "$out/nix-support/propagated-build-inputs"
echo "$propagatedBuildNativeInputs" > "$out/nix-support/propagated-build-native-inputs"
echo "$propagatedNativeBuildInputs" > "$out/nix-support/propagated-native-build-inputs"
}