diff options
author | Andreas Ericsson <ae@op5.se> | 2008-11-22 13:05:32 +0100 |
---|---|---|
committer | Shawn O. Pearce <spearce@spearce.org> | 2008-11-22 12:08:00 -0800 |
commit | ff7c7576aad8b6d87100eb1a62c0bfcdd6e24e01 (patch) | |
tree | 20bb1bec4aac38a69c0a6fcc62919a472e33a136 | |
parent | 4f0adcd0e61eabe06fe32be66b16559537124b7a (diff) | |
download | libgit2-ff7c7576aad8b6d87100eb1a62c0bfcdd6e24e01.tar.gz |
s/COPYING/.HEADER/ for install-headers target
We don't want to prepend the entire license; Only the
file header part of it.
Signed-off-by: Andreas Ericsson <ae@op5.se>
Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -41,7 +41,7 @@ test: $(TEST_RUN) install-headers: $(PUBLIC_HEADERS) @mkdir -p /tmp/gitinc/git - @for i in $^; do cat COPYING $$i > /tmp/gitinc/$${i##src/}; done + @for i in $^; do cat .HEADER $$i > /tmp/gitinc/$${i##src/}; done .c.o: $(CC) $(BASIC_CFLAGS) $(CFLAGS) -c $< -o $@ |