pkgsrc/devel/MoarVM/patches/patch-build_setup.pm
bsiegert fc0e343380 Import MoarVM-2016.03 from wip.
Short for "Metamodel On A Runtime", MoarVM is a virtual machine built
especially for Rakudo Perl 6 and the NQP Compiler Toolchain. The primary
backend target for the Christmas 2015 release of Perl 6, MoarVM stands
out amongst the various Rakudo and NQP compilation targets by:

- Running the Perl 6 specification test suite in the least time
- Passing more of the Perl 6 specification tests than Rakudo Perl 6 on
  other backends
- Having the lowest memory usage
- Having the best startup time
- Being fastest to build both NQP and Rakudo - and thus your Perl 6 and
  NQP programs too!
- Being the only backend to support strings at grapheme level
2016-04-08 20:26:46 +00:00

22 lines
430 B
Raku

$NetBSD: patch-build_setup.pm,v 1.1 2016/04/08 20:26:46 bsiegert Exp $
pkgsrc uses gmake everywhere, so use gmake syntax.
Not for upstreaming.
--- build/setup.pm.orig 2015-12-25 12:37:32.000000000 +0000
+++ build/setup.pm
@@ -171,12 +171,12 @@ our %TC_BSD = (
%TC_POSIX,
mknoisy => <<'TERM',
-.if $(NOISY) != 1
+ifneq ($(NOISY), 1)
MSG = @echo
CMD = @
NOOUT = > @nul@
NOERR = 2> @nul@
-.endif
+endif
TERM
);