pkgsrc/devel/nant/patches/patch-ab
jmcneill d334e039cb Import nant version 0.86beta1.
NAnt is a free .NET build tool. In theory it is kind of like make without
make's wrinkles. In practice it's a lot like Ant.

NAnt is different.  Instead of a model where it is extended with shell-based
commands, NAnt is extended using task classes.  Instead of writing shell
commands, the configuration files are XML-based, calling out a target tree
where various tasks get executed.  Each task is run by an object that
implements a particular Task interface.
2009-01-07 03:01:10 +00:00

13 lines
738 B
Text

$NetBSD: patch-ab,v 1.1.1.1 2009/01/07 03:01:10 jmcneill Exp $
--- NAnt.build.orig 2009-01-06 21:51:54.000000000 -0500
+++ NAnt.build
@@ -830,7 +830,7 @@
the wrapper is created
-->
<echo file="${wrapper}" append="false">#!/bin/sh</echo>
- <echo file="${wrapper}" append="true">exec ${path::combine(prefix, 'bin')}/mono ${path::combine(install.copylocation, 'bin')}/NAnt.exe "$@"</echo>
+ <echo file="${wrapper}" append="true">exec ${path::combine(prefix, 'bin')}/mono ${path::combine(install.vprefix, 'bin')}/NAnt.exe "$@"</echo>
<exec program="chmod" commandline="a+x ${path::combine(install.bindir, 'nant')}"/>
</target>
<target name="rpm" depends="init, build">