1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-14 07:43:06 +00:00
freebsd-ports/www/ffproxy/files/patch-Makefile.in
Baptiste Daroussin 93dcef6960 Prevent collision with getline(3)
While here regen patches
2016-05-13 19:42:03 +00:00

21 lines
667 B
Plaintext

--- Makefile.in.orig 2005-01-05 15:50:10 UTC
+++ Makefile.in
@@ -48,7 +48,7 @@ man:
conf:
sed -e 's|_BASE_|$(pkgdatadir)|g' sample.config.s \
> sample.config || cp sample.config.s sample.config
- cp sample.config ffproxy.conf
+ cp sample.config ffproxy.conf.sample
installdirs: mkinstalldirs
$(SHELL) $(srcdir)/mkinstalldirs $(DESTDIR)$(bindir) \
@@ -73,7 +73,7 @@ install_man: man
$(INSTALL_DATA) ffproxy.8 $(DESTDIR)$(mandir)/man8
install_config: conf
- $(INSTALL_DATA) ffproxy.conf $(DESTDIR)$(sysconfdir)
+ $(INSTALL_DATA) ffproxy.conf.sample $(DESTDIR)$(sysconfdir)
install_sample: conf
$(INSTALL_DATA) sample.config $(DESTDIR)$(pkgdatadir)