mirror of
https://github.com/Stichting-MINIX-Research-Foundation/pkgsrc-ng.git
synced 2025-09-10 13:03:41 -04:00
17 lines
560 B
Plaintext
17 lines
560 B
Plaintext
$NetBSD: patch-otherlibs_labltk_compiler_Makefile,v 1.1 2012/10/08 15:05:33 jaapb Exp $
|
|
|
|
Use BSD_INSTALL_* instead of mkdir and cp
|
|
--- otherlibs/labltk/compiler/Makefile.orig 2011-07-27 14:17:02.000000000 +0000
|
|
+++ otherlibs/labltk/compiler/Makefile
|
|
@@ -61,8 +61,8 @@ scratch :
|
|
rm -f *.cm* pplex.ml ppyac.ml ppyac.mli pp$(EXE)
|
|
|
|
install:
|
|
- cp tkcompiler$(EXE) $(INSTALLDIR)
|
|
- cp pp$(EXE) $(INSTALLDIR)
|
|
+ $(BSD_INSTALL_SCRIPT) tkcompiler$(EXE) $(INSTALLDIR)
|
|
+ $(BSD_INSTALL_SCRIPT) pp$(EXE) $(INSTALLDIR)
|
|
|
|
.SUFFIXES :
|
|
.SUFFIXES : .mli .ml .cmi .cmo .mlp
|