blob: 46c3f9431a072cd7208a57dc2a9a459c842e0649 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
$NetBSD: patch-bf,v 1.1 2010/04/05 22:52:23 markd Exp $
--- config/Imakefile.orig 2003-10-22 18:13:38.000000000 +0000
+++ config/Imakefile
@@ -11,10 +11,10 @@ MakeInSubdirs($(SUBDIRS))
#if !InstallRelative
install::
- MakeDir($(CONFIGDIR))
- $(INSTALL) -c $(INSTINCFLAGS) *.def* template *.mk $(CONFIGDIR)
+ MakeDir($(DESTDIR)$(CONFIGDIR))
+ $(INSTALL) -c $(INSTINCFLAGS) *.def* template *.mk $(DESTDIR)$(CONFIGDIR)
uninstall::
- (cd $(CONFIGDIR);$(RM) *.def* template *.mk)
+ (cd $(DESTDIR)$(CONFIGDIR);$(RM) *.def* template *.mk)
#endif
|