mirror of
https://github.com/Stichting-MINIX-Research-Foundation/pkgsrc-ng.git
synced 2025-09-10 13:03:41 -04:00
19 lines
587 B
Plaintext
19 lines
587 B
Plaintext
$NetBSD: patch-otherlibs_labltk_frx_Makefile,v 1.1 2012/10/08 15:05:33 jaapb Exp $
|
|
|
|
Use BSD_INSTALL_* instead of mkdir and cp
|
|
--- otherlibs/labltk/frx/Makefile.orig 2011-07-27 14:17:02.000000000 +0000
|
|
+++ otherlibs/labltk/frx/Makefile
|
|
@@ -36,10 +36,10 @@ frxlib.cmxa: $(OBJSX)
|
|
$(CAMLOPTLIBR) -o frxlib.cmxa $(OBJSX)
|
|
|
|
install:
|
|
- cp *.cmi *.mli frxlib.cma $(INSTALLDIR)
|
|
+ $(BSD_INSTALL_DATA) *.cmi *.mli frxlib.cma $(INSTALLDIR)
|
|
|
|
installopt:
|
|
- cp frxlib.cmxa frxlib.$(A) $(INSTALLDIR)
|
|
+ $(BSD_INSTALL_DATA) frxlib.cmxa frxlib.$(A) $(INSTALLDIR)
|
|
|
|
clean:
|
|
rm -f *.cm* *.$(O) *.$(A)
|