1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-26 09:46:09 +00:00
freebsd-ports/devel/cxref/files/patch-ad
Kevin Lo 713e1b4aa5 Update to version 1.5c
PR: 28041
Submitted by: Ports Fury
2001-06-12 14:25:45 +00:00

27 lines
810 B
Plaintext

--- Makefile.in.orig Sun Mar 18 19:29:25 2001
+++ Makefile.in Fri May 18 05:53:30 2001
@@ -28,6 +28,9 @@
# The installation program.
INSTALL=@INSTALL@
+INSTALL_PROGRAM=@INSTALL_PROGRAM@
+INSTALL_SCRIPT=@INSTALL_SCRIPT@
+INSTALL_DATA=@INSTALL_DATA@
# The C compiler and linker
@@ -121,10 +124,10 @@
install : programs
[ -d $(bindir) ] || $(INSTALL) -d $(bindir)
- $(INSTALL) -m 755 cxref-inst $(bindir)/cxref
- $(INSTALL) -m 755 $(srcdir)/cxref-cc $(bindir)
+ $(INSTALL_PROGRAM) cxref-inst $(bindir)/cxref
+ $(INSTALL_SCRIPT) $(srcdir)/cxref-cc $(bindir)
[ -d $(mandir)/man1 ] || $(INSTALL) -d $(mandir)/man1
- $(INSTALL) -m 644 $(srcdir)/README.man $(mandir)/man1/cxref.1
+ $(INSTALL_DATA) $(srcdir)/README.man $(mandir)/man1/cxref.1
cd cpp && $(MAKE) install
cd query && $(MAKE) install