diff options
author | Jakub Jirutka <jakub@jirutka.cz> | 2016-11-26 01:19:33 +0100 |
---|---|---|
committer | Jakub Jirutka <jakub@jirutka.cz> | 2016-11-26 01:27:08 +0100 |
commit | 1b894fef00117044d640f9cbbd479c114973d3e8 (patch) | |
tree | 050f49499cba1fab6e71251f5cb67498671468df /community/http-parser/0005-makefile-fix-install-rule-dependency.patch | |
parent | 3daaac76560d7bf976ecdfe5bcc9b3efad0cbf61 (diff) | |
download | aports-1b894fef00117044d640f9cbbd479c114973d3e8.tar.bz2 aports-1b894fef00117044d640f9cbbd479c114973d3e8.tar.xz |
main/http-parser: move from community (needed for nodejs-lts)
Diffstat (limited to 'community/http-parser/0005-makefile-fix-install-rule-dependency.patch')
-rw-r--r-- | community/http-parser/0005-makefile-fix-install-rule-dependency.patch | 33 |
1 files changed, 0 insertions, 33 deletions
diff --git a/community/http-parser/0005-makefile-fix-install-rule-dependency.patch b/community/http-parser/0005-makefile-fix-install-rule-dependency.patch deleted file mode 100644 index da96637306..0000000000 --- a/community/http-parser/0005-makefile-fix-install-rule-dependency.patch +++ /dev/null @@ -1,33 +0,0 @@ -From b67bfbe6a07529dd82e2ee83b6848d017e6e422f Mon Sep 17 00:00:00 2001 -From: hasufell <hasufell@hasufell.de> -Date: Mon, 2 Nov 2015 16:51:28 +0100 -Subject: [PATCH 5/5] makefile: fix install rule dependency - -Otherwise the install rule will recompile the library, no matter -if it has already been compiled. ---- - Makefile | 4 ++-- - 1 file changed, 2 insertions(+), 2 deletions(-) - -diff --git a/Makefile b/Makefile -index ae16f08..df0b59f 100644 ---- a/Makefile -+++ b/Makefile -@@ -122,12 +122,12 @@ parsertrace_g: http_parser_g.o contrib/parsertrace.c - tags: http_parser.c http_parser.h test.c - ctags $^ - --install: library -+install: $(SONAME) - $(INSTALL) -D http_parser.h "$(DESTDIR)$(INCLUDEDIR)/http_parser.h" - $(INSTALL) -D $(SONAME) "$(DESTDIR)$(LIBDIR)/$(SONAME)" - ln -s $(SONAME) "$(DESTDIR)$(LIBDIR)/libhttp_parser.$(SOEXT)" - --install-strip: library -+install-strip: $(SONAME) - $(INSTALL) -D http_parser.h "$(DESTDIR)$(INCLUDEDIR)/http_parser.h" - $(INSTALL) -D -s $(SONAME) "$(DESTDIR)$(LIBDIR)/$(SONAME)" - ln -s $(SONAME) "$(DESTDIR)$(LIBDIR)/libhttp_parser.$(SOEXT)" --- -2.6.1 - |