blob: 4cedaaeb7b5f57856c1dfba752883adf196cf697 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
--- src/Makefile.in.orig Sun Feb 6 04:35:02 2005
+++ src/Makefile.in Wed May 4 14:16:28 2005
@@ -26,6 +26,9 @@
# The installation program.
INSTALL=@INSTALL@
+INSTALL_PROGRAM=@INSTALL_PROGRAM@
+INSTALL_SCRIPT=@INSTALL_SCRIPT@
+INSTALL_DATA=@INSTALL_DATA@
# The C compiler and linker
@@ -69,8 +72,8 @@
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)
install-win32 : programs
[ -d $(bindir) ] || $(INSTALL) -d $(bindir)
|