Skip to content

Commit

Permalink
qt4: fixup missing space between flags on Darwin
Browse files Browse the repository at this point in the history
Since 9aae299, /cc @globin.
  • Loading branch information
vcunat committed Feb 2, 2017
1 parent 75a4679 commit 787c1ad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkgs/development/libraries/qt-4.x/4.8/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ stdenv.mkDerivation rec {

NIX_CFLAGS_COMPILE = "-std=gnu++98"
+ optionalString (stdenv.isFreeBSD || stdenv.isDarwin)
"-I${glib.dev}/include/glib-2.0 -I${glib.out}/lib/glib-2.0/include"
" -I${glib.dev}/include/glib-2.0 -I${glib.out}/lib/glib-2.0/include"
+ optionalString stdenv.isDarwin " -I${libcxx}/include/c++/v1";

NIX_LDFLAGS = optionalString (stdenv.isFreeBSD || stdenv.isDarwin)
Expand Down

2 comments on commit 787c1ad

@globin
Copy link
Member

@globin globin commented on 787c1ad Feb 2, 2017

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

sorry :/

@vcunat
Copy link
Member Author

@vcunat vcunat commented on 787c1ad Feb 2, 2017

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I considered migrating to lists to decrease such risks, but I didn't want to risk additional rebuilds at this point.

Please sign in to comment.