mirror of
https://github.com/Stichting-MINIX-Research-Foundation/pkgsrc-ng.git
synced 2025-08-05 10:48:03 -04:00
19 lines
550 B
Plaintext
19 lines
550 B
Plaintext
$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
|
|
|