diff options
author | Luke Shumaker <lukeshu@sbcglobal.net> | 2014-06-29 22:44:14 -0400 |
---|---|---|
committer | Luke Shumaker <lukeshu@sbcglobal.net> | 2014-06-29 22:44:14 -0400 |
commit | 89ec7c1ab9310c37219e52fcf6dbd4eaa12ffe7e (patch) | |
tree | 6367cdc6822545269773f70f8f65f8c7d3bba217 | |
parent | 2ab71dc62a85985e76bbf8b94838cdd4d6105128 (diff) |
common.mk: don't install HACKING.md files
-rw-r--r-- | common.mk | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -32,7 +32,7 @@ rootdir = $(shell sed -r 's|^/||;s|[^/]+|..|g'<<<$(bindir)) progs += $(filter-out $(no-progs),$(shell find . -maxdepth 1 -type f -executable -printf '%f\n')) confs += $(filter-out $(no-conf) ,$(wildcard *.conf)) mans += $(filter-out $(no-mans) ,$(patsubst %.ronn,%,$(wildcard *.ronn))) -docs += $(filter-out $(no-docs) ,$(wildcard *.md) $(wildcard *.ronn)) +docs += $(filter-out $(no-docs) HACKING.md,$(wildcard *.md) $(wildcard *.ronn)) libexecs += libs += |