Skip to content

Commit

Permalink
curl: fix clang build
Browse files Browse the repository at this point in the history
  • Loading branch information
LnL7 committed Oct 4, 2017
1 parent a98b968 commit 514593e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkgs/tools/networking/curl/default.nix
Expand Up @@ -68,8 +68,8 @@ stdenv.mkDerivation rec {
++ stdenv.lib.optional c-aresSupport "--enable-ares=${c-ares}"
++ stdenv.lib.optional gssSupport "--with-gssapi=${gss}";

CXX = "g++";
CXXCPP = "g++ -E";
CXX = "c++";
CXXCPP = "c++ -E";

postInstall = ''
moveToOutput bin/curl-config "$dev"
Expand Down

0 comments on commit 514593e

Please sign in to comment.