diff options
author | Agostino Sarubbo <ago@gentoo.org> | 2012-08-14 14:18:46 +0200 |
---|---|---|
committer | Agostino Sarubbo <ago@gentoo.org> | 2012-08-14 14:18:46 +0200 |
commit | 53fe61395daee613c148932cb1c80e4e41241adc (patch) | |
tree | df290cd45a0bce479e943145c6073854e84ec2e9 /net-analyzer | |
parent | Initial import for logkeys-9999 (diff) | |
download | ago-53fe61395daee613c148932cb1c80e4e41241adc.tar.gz ago-53fe61395daee613c148932cb1c80e4e41241adc.tar.bz2 ago-53fe61395daee613c148932cb1c80e4e41241adc.zip |
respect CXXFLAGS
Diffstat (limited to 'net-analyzer')
-rw-r--r-- | net-analyzer/logkeys/files/cxxflags.patch | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/net-analyzer/logkeys/files/cxxflags.patch b/net-analyzer/logkeys/files/cxxflags.patch new file mode 100644 index 0000000..f67bda0 --- /dev/null +++ b/net-analyzer/logkeys/files/cxxflags.patch @@ -0,0 +1,15 @@ +--- src/Makefile.am.old 2012-08-14 13:34:40.299853824 +0200 ++++ src/Makefile.am 2012-08-14 13:35:08.735498330 +0200 +@@ -1,4 +1,4 @@ +-CXXFLAGS = -Wall -O3 -DSYS_CONF_DIR=\"$(sysconfdir)\" ++AM_CXXFLAGS = $(CXXFLAGS) -Wall -DSYS_CONF_DIR=\"$(sysconfdir)\" + + bin_PROGRAMS = logkeys llk llkk + logkeys_SOURCES = logkeys.cc +@@ -10,4 +10,4 @@ + chmod u+s $(DESTDIR)$(bindir)/llk + chown root\: $(DESTDIR)$(bindir)/llkk + chmod u+s $(DESTDIR)$(bindir)/llkk +- +\ No newline at end of file ++ |