treewide: Make configureFlags lists
This commit is contained in:
@@ -14,7 +14,7 @@ stdenv.mkDerivation rec {
|
||||
nativeBuildInputs = [ autoconf automake libtool bison ];
|
||||
buildInputs = [ pcre ];
|
||||
|
||||
configureFlags = "--without-tcl";
|
||||
configureFlags = [ "--without-tcl" ];
|
||||
|
||||
postPatch = ''
|
||||
# Disable ccache documentation as it need yodl
|
||||
|
||||
@@ -14,7 +14,7 @@ stdenv.mkDerivation rec {
|
||||
nativeBuildInputs = [ autoconf automake libtool bison ];
|
||||
buildInputs = [ pcre ];
|
||||
|
||||
configureFlags = "--without-tcl";
|
||||
configureFlags = [ "--without-tcl" ];
|
||||
|
||||
postPatch = ''
|
||||
# Disable ccache documentation as it need yodl
|
||||
|
||||
@@ -12,7 +12,7 @@ stdenv.mkDerivation rec {
|
||||
# 'make check' uses boost and tcl
|
||||
buildInputs = stdenv.lib.optionals doCheck [ boost tcl ];
|
||||
|
||||
configureFlags = "--disable-ccache";
|
||||
configureFlags = [ "--disable-ccache" ];
|
||||
|
||||
meta = {
|
||||
description = "Interface compiler that connects C/C++ code to higher-level languages";
|
||||
|
||||
Reference in New Issue
Block a user