From dc6ec6a4c8e39c7c62f4350f5cd1b277e8b8281c Mon Sep 17 00:00:00 2001 From: Bart Brouns Date: Sat, 30 Jul 2016 10:39:34 +0200 Subject: [PATCH] faust: remove double quotes around NIX_CFLAGS_COMPILE and NIX_LDFLAGS fixes https://travis-ci.org/NixOS/nixpkgs/jobs/147556297#L2705 --- pkgs/applications/audio/faust/faust1.nix | 4 ++-- pkgs/applications/audio/faust/faust1git.nix | 4 ++-- pkgs/applications/audio/faust/faust2.nix | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/pkgs/applications/audio/faust/faust1.nix b/pkgs/applications/audio/faust/faust1.nix index 20ba1c14745..8749497c8ba 100644 --- a/pkgs/applications/audio/faust/faust1.nix +++ b/pkgs/applications/audio/faust/faust1.nix @@ -170,8 +170,8 @@ let --set FAUST_LIB_PATH "${faust}/lib/faust" \ --prefix PATH : "$PATH" \ --prefix PKG_CONFIG_PATH : "$PKG_CONFIG_PATH" \ - --set NIX_CFLAGS_COMPILE "\"$NIX_CFLAGS_COMPILE\"" \ - --set NIX_LDFLAGS "\"$NIX_LDFLAGS\"" + --set NIX_CFLAGS_COMPILE "$NIX_CFLAGS_COMPILE" \ + --set NIX_LDFLAGS "$NIX_LDFLAGS" done ''; }); diff --git a/pkgs/applications/audio/faust/faust1git.nix b/pkgs/applications/audio/faust/faust1git.nix index 02b71f6b571..94e58f22428 100644 --- a/pkgs/applications/audio/faust/faust1git.nix +++ b/pkgs/applications/audio/faust/faust1git.nix @@ -175,8 +175,8 @@ let --set FAUSTINC "${faust}/include/faust" \ --prefix PATH : "$PATH" \ --prefix PKG_CONFIG_PATH : "$PKG_CONFIG_PATH" \ - --set NIX_CFLAGS_COMPILE "\"$NIX_CFLAGS_COMPILE\"" \ - --set NIX_LDFLAGS "\"$NIX_LDFLAGS\"" + --set NIX_CFLAGS_COMPILE "$NIX_CFLAGS_COMPILE" \ + --set NIX_LDFLAGS "$NIX_LDFLAGS" done ''; }); diff --git a/pkgs/applications/audio/faust/faust2.nix b/pkgs/applications/audio/faust/faust2.nix index 3953eb2b7e0..24cab4cdbcd 100644 --- a/pkgs/applications/audio/faust/faust2.nix +++ b/pkgs/applications/audio/faust/faust2.nix @@ -196,8 +196,8 @@ let --set FAUST_LIB_PATH "${faust}/lib/faust" \ --prefix PATH : "$PATH" \ --prefix PKG_CONFIG_PATH : "$PKG_CONFIG_PATH" \ - --set NIX_CFLAGS_COMPILE "\"$NIX_CFLAGS_COMPILE\"" \ - --set NIX_LDFLAGS "\"$NIX_LDFLAGS\"" + --set NIX_CFLAGS_COMPILE "$NIX_CFLAGS_COMPILE" \ + --set NIX_LDFLAGS "$NIX_LDFLAGS" done ''; });