opnsense-ports/chinese/libtabe/files/patch-src__Makefile.in
Franco Fichtner 8cb1a96ede ports: pull in a snapshot of the FreeBSD ports tree
Taken from:	https://github.com/freebsd/freebsd-ports.git
Commit id:	5070672073b68be364139bc6b3a89100bd17d331
2014-11-09 14:03:21 +01:00

16 lines
827 B
Text

--- ./src/Makefile.in.orig 2014-05-19 15:26:42.836106845 +0800
+++ ./src/Makefile.in 2014-05-19 15:27:25.010111107 +0800
@@ -98,9 +98,9 @@
for i in @build_supports@; do cd supports/$$i; $(MAKE) distclean; done
install: all
- if [ ! -d $(libdir) ]; then $(INSTALL) -d $(libdir); fi
- if [ ! -d $(includedir) ]; then $(INSTALL) -d $(includedir); fi
- $(LIBTOOL) --mode=install $(INSTALL_DATA) $(LIBNAME) $(libdir)
- $(INSTALL_DATA) $(INCLUDES) $(includedir)
+ if [ ! -d $(DESTDIR)$(libdir) ]; then $(INSTALL) -d $(DESTDIR)$(libdir); fi
+ if [ ! -d $(DESTDIR)$(includedir) ]; then $(INSTALL) -d $(DESTDIR)$(includedir); fi
+ $(LIBTOOL) --mode=install $(INSTALL_DATA) $(LIBNAME) $(DESTDIR)$(libdir)
+ $(INSTALL_DATA) $(INCLUDES) $(DESTDIR)$(includedir)
for i in @build_supports@; do cd supports/$$i; $(MAKE) install; done