diff options
author | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2012-05-04T22·50-0400 |
---|---|---|
committer | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2012-05-04T22·50-0400 |
commit | c6acb219f9312ee3c8e1ac83d2b490401f8b9a9d (patch) | |
tree | f95c3fcb839519c859f6ff433f2333be015bc9bd /perl/Makefile.am | |
parent | 56c82f3d9dec34eeaa124c61b20af4ae67f827a2 (diff) |
Drop the Perl-specific CFLAGS
This fixes the Darwin build (http://hydra.nixos.org/build/2517380). Hopefully it doesn't break other builds.
Diffstat (limited to 'perl/Makefile.am')
-rw-r--r-- | perl/Makefile.am | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/perl/Makefile.am b/perl/Makefile.am index 50e68f17ea8e..d02c54033058 100644 --- a/perl/Makefile.am +++ b/perl/Makefile.am @@ -22,8 +22,7 @@ libNixStore_la_LIBADD = $(top_builddir)/src/libstore/libstore.la AM_CXXFLAGS = \ -I$(top_srcdir)/src -I$(top_srcdir)/src/libutil -I$(top_srcdir)/src/libstore \ - -I$(shell $(perl) -e 'use Config; print $$Config{archlibexp};')/CORE \ - $(shell $(perl) -e 'use Config; print $$Config{ccflags};') + -I$(shell $(perl) -e 'use Config; print $$Config{archlibexp};')/CORE lib/Nix/Store.cc: lib/Nix/Store.xs xsubpp $^ -output $@ |