Skip to content

Commit

Permalink
curl: fix clang build
Browse files Browse the repository at this point in the history
(cherry picked from commit 514593e)
  • Loading branch information
LnL7 authored and edolstra committed Oct 16, 2017
1 parent 461e4a7 commit 6500c1a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkgs/tools/networking/curl/default.nix
Expand Up @@ -67,8 +67,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 6500c1a

Please sign in to comment.