Clean up redundant "if condition then true else false"

This commit is contained in:
Eelco Dolstra
2012-12-28 19:57:47 +01:00
parent 84779a6f7d
commit 88b11196c1
7 changed files with 11 additions and 11 deletions
+1 -1
View File
@@ -74,7 +74,7 @@ stdenv.mkDerivation {
'';
# Cross stripping hurts.
dontStrip = if cross != null then true else false;
dontStrip = cross != null;
makeFlags = [ crossMakeFlag "VERBOSE=1" ];