diff options
author | Dmitry Marakasov <amdmi3@FreeBSD.org> | 2016-07-17 09:00:30 +0000 |
---|---|---|
committer | Dmitry Marakasov <amdmi3@FreeBSD.org> | 2016-07-17 09:00:30 +0000 |
commit | cbceaf7345c0cb04f0ce42e13839dd8136a32fc7 (patch) | |
tree | a87818ee50f1439de3da35c8b650634ee3b9aaa0 /math/xplot/files/patch-Makefile | |
parent | Build with ninja to reduce build time (diff) |
- Switch to options helpers
- Regenerate patches with `make makepatch`
Diffstat (limited to 'math/xplot/files/patch-Makefile')
-rw-r--r-- | math/xplot/files/patch-Makefile | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/math/xplot/files/patch-Makefile b/math/xplot/files/patch-Makefile deleted file mode 100644 index ac26d5dc6f92..000000000000 --- a/math/xplot/files/patch-Makefile +++ /dev/null @@ -1,19 +0,0 @@ ---- Makefile.in.orig 2014-06-08 23:17:52.261073676 +0800 -+++ Makefile.in 2014-06-08 23:18:17.975100570 +0800 -@@ -70,11 +70,11 @@ version_string.c: version - echo 'char *version_string = "'`cat version`'";' >version_string.c - - install: all -- mkdir -p $(bindir) -- $(INSTALL_PROGRAM) xplot $(bindir)/xplot -- $(INSTALL) tcpdump2xplot.pl $(bindir)/tcpdump2xplot -- mkdir -p $(mandir) -- $(INSTALL_MAN) $(MANFILES) $(mandir) -+ mkdir -p $(DESTDIR)$(bindir) -+ $(INSTALL_PROGRAM) xplot $(DESTDIR)$(bindir)/xplot -+ $(INSTALL) tcpdump2xplot.pl $(DESTDIR)$(bindir)/tcpdump2xplot -+ mkdir -p $(DESTDIR)$(mandir) -+ $(INSTALL_MAN) $(MANFILES) $(DESTDIR)$(mandir) - clean: - rm -f ${PROG} ${PROG}.old *.o version_string.c - |