From ff7c7576aad8b6d87100eb1a62c0bfcdd6e24e01 Mon Sep 17 00:00:00 2001 From: Andreas Ericsson Date: Sat, 22 Nov 2008 13:05:32 +0100 Subject: [PATCH] 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 Signed-off-by: Shawn O. Pearce --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 1f3ae5e22..49306beee 100644 --- a/Makefile +++ b/Makefile @@ -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 $@