treewide: Make configureFlags lists
This commit is contained in:
@@ -10,7 +10,7 @@ stdenv.mkDerivation rec {
|
||||
|
||||
buildInputs = [ libiodbc postgresql openssl ];
|
||||
|
||||
configureFlags = "--with-iodbc=${libiodbc}";
|
||||
configureFlags = [ "--with-iodbc=${libiodbc}" ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = http://psqlodbc.projects.postgresql.org/;
|
||||
|
||||
@@ -14,11 +14,11 @@ stdenv.mkDerivation rec {
|
||||
|
||||
CPP = "${stdenv.cc}/bin/gcc -E";
|
||||
|
||||
configureFlags = "
|
||||
--enable-shared --disable-all-vads --with-readline=${readline.dev}
|
||||
--disable-hslookup --disable-wbxml2 --without-iodbc
|
||||
--enable-openssl=${openssl.dev}
|
||||
";
|
||||
configureFlags = [
|
||||
"--enable-shared" "--disable-all-vads" "--with-readline=${readline.dev}"
|
||||
"--disable-hslookup" "--disable-wbxml2" "--without-iodbc"
|
||||
"--enable-openssl=${openssl.dev}"
|
||||
];
|
||||
|
||||
postInstall = ''
|
||||
echo Moving documentation
|
||||
|
||||
@@ -12,11 +12,11 @@ stdenv.mkDerivation rec {
|
||||
|
||||
CPP = "${stdenv.cc}/bin/gcc -E";
|
||||
|
||||
configureFlags = "
|
||||
--enable-shared --disable-all-vads --with-readline=${readline.dev}
|
||||
--disable-hslookup --disable-wbxml2 --without-iodbc
|
||||
--enable-openssl=${openssl.dev}
|
||||
";
|
||||
configureFlags = [
|
||||
"--enable-shared" "--disable-all-vads" "--with-readline=${readline.dev}"
|
||||
"--disable-hslookup" "--disable-wbxml2" "--without-iodbc"
|
||||
"--enable-openssl=${openssl.dev}"
|
||||
];
|
||||
|
||||
postInstall=''
|
||||
echo Moving documentation
|
||||
|
||||
Reference in New Issue
Block a user