Subject: Re: xmms Solaris fixes
To: None <tech-pkg@netbsd.org>
From: grant beattie <grant@netbsd.org>
List: tech-pkg
Date: 11/27/2002 16:14:12
Jonathan,
Thanks for the diff, I'm not immediately able to try it, but it looks
good.
> +.if ${OPSYS} == "SunOS"
> +PLIST_SRC= ${PKGDIR}/PLIST.SunOS
> .endif
We should probably standardize these conditionals to be:
.if exists(${PKGDIR}/PLIST.${OPSYS})
PLIST_SRC= ${PKGDIR}/PLIST.${OPSYS}
At the moment, we have a sprinkling of PLIST-${OPSYS},
PLIST.${LOWER_OPSYS}, etc. so I'll try to clean these up shortly.
g.