blob: fe38b7453ca2affcf6435a7bb98e5aafdee998dc (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
--- ./agent/files/help/Makefile.SH.orig 2006-08-24 22:24:12.000000000 +0900
+++ ./agent/files/help/Makefile.SH 2014-08-14 01:59:33.534704805 +0900
@@ -129,7 +129,7 @@
install::
@for dir in $(PRIVLIB) $(PRIVLIB)/help; do \
case '${MFLAGS}' in *[i]*) set +e;; esac; \
- (set -x; test -d $$dir || $(INSTALLDIR) $$dir); \
+ (set -x; test -d $(INSTALL_PREFIX)$$dir || $(INSTALLDIR) $(INSTALL_PREFIX)$$dir); \
done
deinstall::
@@ -138,7 +138,7 @@
install:: $(FILES)
@case '${MFLAGS}' in *[i]*) set +e;; esac; \
for i in $(FILES); do \
- (set -x; $(INSTALL) -c -m 444 $$i $(PRIVLIB)/help); \
+ (set -x; $(INSTALL) -c -m 444 $$i $(INSTALL_PREFIX)$(PRIVLIB)/help); \
done
deinstall::
|