diff options
author | Jeremy Harris <jgh146exb@wizmail.org> | 2014-04-21 13:07:17 +0100 |
---|---|---|
committer | Jeremy Harris <jgh146exb@wizmail.org> | 2014-04-21 13:07:17 +0100 |
commit | 93d4b03a2d9da8858f33c445b57128ef890f77fe (patch) | |
tree | 1d5dcb7f2799d601b1b4743575e49a338e04b59f /src/Makefile | |
parent | 9f1ec64247097ad2c1600bbf0124f619b3e445b7 (diff) |
Fix DISABLE_DNSSEC build
Bad syntax possibly only affected some compilers.
Diffstat (limited to 'src/Makefile')
-rw-r--r-- | src/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/Makefile b/src/Makefile index 31c459a05..b913aec8a 100644 --- a/src/Makefile +++ b/src/Makefile @@ -90,7 +90,8 @@ distclean:; $(RM_COMMAND) -rf build-* cscope* cscope.files: FRC echo "-q" > $@ echo "-p3" >> $@ - find src Local -name "*.[cshyl]" -print \ + find src Local OS -name "*.[cshyl]" -print \ + -o -name "os.h*" -print \ -o -name "*akefile*" -print \ -o -name EDITME -print >> $@ |