- Fix pkg-plist
The default install-exec-hook calls apxs but without -a/-A which confuses our std pkg-plist @exec/@unexec stanzas Reported by: erwin via pointyhat
This commit is contained in:
parent
19355dd246
commit
87be8b28de
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=261261
2 changed files with 14 additions and 1 deletions
|
@ -7,7 +7,7 @@
|
|||
|
||||
PORTNAME= mod_musicindex
|
||||
PORTVERSION= 1.3.3
|
||||
PORTREVISION= 3
|
||||
PORTREVISION= 4
|
||||
CATEGORIES= www audio
|
||||
MASTER_SITES= http://www.parisc-linux.org/~varenet/musicindex/ \
|
||||
http://depot.fsck.ch/mirror/distfiles/
|
||||
|
|
13
www/mod_musicindex/files/patch-src__Makefile.in
Normal file
13
www/mod_musicindex/files/patch-src__Makefile.in
Normal file
|
@ -0,0 +1,13 @@
|
|||
--- ./src/Makefile.in.orig 2010-09-16 03:35:25.552884648 +0000
|
||||
+++ ./src/Makefile.in 2010-09-16 03:35:03.705416865 +0000
|
||||
@@ -727,8 +727,8 @@
|
||||
|
||||
install: $(lib_LTLIBRARIES)
|
||||
$(mkinstalldirs) "$(DESTDIR)$(libdir)"
|
||||
-@BUILD_FOR_APACHE2_TRUE@ $(APXS) -S LIBEXECDIR="$(DESTDIR)$(libdir)" -i -n musicindex mod_musicindex.la
|
||||
-@BUILD_FOR_APACHE2_FALSE@ $(APXS) -S LIBEXECDIR="$(DESTDIR)$(libdir)" -i -n musicindex .libs/mod_musicindex.so
|
||||
+@BUILD_FOR_APACHE2_TRUE@ $(APXS) -S LIBEXECDIR="$(DESTDIR)$(libdir)" -i -a -n musicindex mod_musicindex.la
|
||||
+@BUILD_FOR_APACHE2_FALSE@ $(APXS) -S LIBEXECDIR="$(DESTDIR)$(libdir)" -i -a -n musicindex .libs/mod_musicindex.so
|
||||
|
||||
# Tell versions [3.59,3.63) of GNU make to not export all variables.
|
||||
# Otherwise a system limit (for SysV at least) may be exceeded.
|
Loading…
Reference in a new issue