1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-05 06:27:37 +00:00
freebsd-ports/irc/charybdis/files/patch-modules_Makefile.in
Mikhail Pchelin 98abcc8b87 - update from 3.4.2 to 3.5.3
- use of official master site
- remove 'expect' from CONFLICTS
- remove DOCS option
- binaries are stripped by default
- help files are linked relatively

Approved by:	crees (maintainer), jpaetzel (mentor)
2016-12-15 08:59:20 +00:00

24 lines
814 B
Plaintext

--- modules/Makefile.in.orig 2016-12-13 14:45:17 UTC
+++ modules/Makefile.in
@@ -16,6 +16,7 @@ MKDEP = @MKDEP@ -DIRCD_PREFIX=\"@prefix
INSTALL = @INSTALL@
INSTALL_PROGRAM = @INSTALL_PROGRAM@
INSTALL_DATA = @INSTALL_DATA@
+INSTALL_LIB = @INSTALL_LIB@
INSTALL_SUID = @INSTALL_PROGRAM@ -o root -m 4755
SEDOBJ = @SEDOBJ@
SHELL = /bin/sh
@@ -179,10 +180,10 @@ install_libmodules.a: libmodules.a
install_shared_modules: install-mkdirs
@echo "ircd: installing modules"
@for file in $(SH_CORE_OBJS); do \
- $(INSTALL_DATA) $$file $(DESTDIR)$(moduledir); \
+ $(INSTALL_LIB) $$file $(DESTDIR)$(moduledir); \
done
@for file in $(SH_OBJS); do \
- $(INSTALL_DATA) $$file $(DESTDIR)$(automoduledir); \
+ $(INSTALL_LIB) $$file $(DESTDIR)$(automoduledir); \
done
install_hpux_shared: install-mkdirs