Remove unnecessary parentheses around if conditions
Pet peeve...
This commit is contained in:
@@ -63,7 +63,7 @@ stdenv.mkDerivation rec {
|
||||
extraCrossConfig = ''
|
||||
CONFIG_CROSS_COMPILER_PREFIX "${stdenv.cross.config}-"
|
||||
'' +
|
||||
(if (stdenv.cross.platform.kernelMajor == "2.4") then ''
|
||||
(if stdenv.cross.platform.kernelMajor == "2.4" then ''
|
||||
CONFIG_IONICE n
|
||||
'' else "");
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user