Browse Source

Refresh patch queue

Christoph Biedl 4 years ago
parent
commit
fe734cf796
1 changed files with 3 additions and 4 deletions
  1. 3 4
      debian/patches/debian.improve-installation.patch

+ 3 - 4
debian/patches/debian.improve-installation.patch

@@ -1,11 +1,10 @@
 Description: Improve installation
 Author: Christoph Biedl <debian.axhn@manchmal.in-ulm.de>
 Forwarded: not-needed
-Last-Update: 2018-04-07
+Last-Update: 2020-02-24
 
     * Make LIBDIR overridable from debian/rules
     * Install the .a file
-    * Don't rebuild library in install target
 
 --- a/Makefile
 +++ b/Makefile
@@ -27,6 +26,6 @@ Last-Update: 2018-04-07
  	$(INSTALL) -D  http_parser.h $(DESTDIR)$(INCLUDEDIR)/http_parser.h
  	$(INSTALL) -D $(LIBNAME) $(DESTDIR)$(LIBDIR)/$(LIBNAME)
 +	$(INSTALL) -D libhttp_parser.a $(DESTDIR)$(LIBDIR)/libhttp_parser.a
- 	ln -s $(LIBNAME) $(DESTDIR)$(LIBDIR)/$(SONAME)
- 	ln -s $(LIBNAME) $(DESTDIR)$(LIBDIR)/$(SOLIBNAME).$(SOEXT)
+ 	ln -sf $(LIBNAME) $(DESTDIR)$(LIBDIR)/$(SONAME)
+ 	ln -sf $(LIBNAME) $(DESTDIR)$(LIBDIR)/$(SOLIBNAME).$(SOEXT)