Date: Mon, 26 Aug 2002 03:23:40 +0900 From: Tetsurou Okazaki <okazaki@FreeBSD.org> To: Mathieu Arnold <mat@mat.cc> Cc: FreeBSD-ports@FreeBSD.org Subject: Re: patching and OSVERSION Message-ID: <84fzx294r8.wl%okazaki@FreeBSD.org> In-Reply-To: <12031515.1030297102@sauron> References: <12031515.1030297102@sauron>
next in thread | previous in thread | raw e-mail | index | archive | help
At Sun, 25 Aug 2002 17:38:22 +0200, Mathieu Arnold wrote: > > I was looking at a port which requires different patches, say : > > use patch-1 whatever the version is > > .if ${OSVERSION} >= 460000 > also use patch-2 > .endif > > and after looking at the porter's handbook, I could not find out how to do > it (the patches are in the files subdirectory). In such a case, place conditional patches by file name like files/extra-patch-FOO, and use EXTRA_PATCHES as below. .if ${OSVERSION} >= 460000 EXTRA_PATCHES+= ${PATCHDIR}/extra-patch-FOO .endif Tetsurou To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?84fzx294r8.wl%okazaki>