From: Alan T. DeKok Date: Thu, 15 Nov 2012 13:14:08 +0000 (-0500) Subject: Grep doesn't need -o X-Git-Tag: release_3_0_0_beta1~1570 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4558ba05ecfeae91781a9be39c18d1846a58abb6;p=thirdparty%2Ffreeradius-server.git Grep doesn't need -o --- diff --git a/src/include/Makefile b/src/include/Makefile index 1c9998c1aba..9f3135c22c0 100644 --- a/src/include/Makefile +++ b/src/include/Makefile @@ -31,8 +31,8 @@ autoconf.sed: autoconf.h features.h: features-h autoconf.h @cp $< $@ - @grep -o "^\#define\s*WITH_.*" autoconf.h >> features.h - + @grep "^\#define\s*WITH_.*" autoconf.h >> features.h + missing.h: missing-h autoconf.sed @sed -f autoconf.sed < $< > $@ @@ -41,7 +41,7 @@ tls.h: tls-h autoconf.sed distclean: clean @rm -f radpaths.h - + reconfig clean: @rm -f features.h missing.h tls.h @rm -f autoconf.sed