diff options
author | jlam <jlam@pkgsrc.org> | 2007-08-30 16:54:06 +0000 |
---|---|---|
committer | jlam <jlam@pkgsrc.org> | 2007-08-30 16:54:06 +0000 |
commit | c0c4a5a09210aaa2268c9b8eba615f464ca4bbfe (patch) | |
tree | 2f73adffa6faf80646711380bf46ba6f36e3bfca /emulators/compat30-extras | |
parent | 532a4eb73ad1d781e554f817a88a68da8a4fbf66 (diff) | |
download | pkgsrc-c0c4a5a09210aaa2268c9b8eba615f464ca4bbfe.tar.gz |
Don't rely on differences in the value of DISTNAME that rely on
"immediate" versus "lazy" evaluation of the value. Just explicitly
define a variable (COMPAT_PKG) that holds the value that's needed in
each of the compat* packages, and use it within Makefile.common.
This was an attempt to solve PR pkg/36863, but it doesn't look like
pkglint or lintpkgsrc understand this more straightforward variable
construction either.
Diffstat (limited to 'emulators/compat30-extras')
-rw-r--r-- | emulators/compat30-extras/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/emulators/compat30-extras/Makefile b/emulators/compat30-extras/Makefile index aa3e63e2334..73cdbc4e863 100644 --- a/emulators/compat30-extras/Makefile +++ b/emulators/compat30-extras/Makefile @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.2 2007/08/27 21:44:37 jlam Exp $ +# $NetBSD: Makefile,v 1.3 2007/08/30 16:54:08 jlam Exp $ -DISTNAME= compat30-extras # overridden below +COMPAT_PKG= compat30 # for compat_netbsd/Makefile.common NETBSD_VERSION= 3.0 HOMEPAGE= http://www.NetBSD.org/Releases/formal-3.0/index.html |