diff options
author | xtraeme <xtraeme@pkgsrc.org> | 2004-06-01 22:41:21 +0000 |
---|---|---|
committer | xtraeme <xtraeme@pkgsrc.org> | 2004-06-01 22:41:21 +0000 |
commit | 17285d04a20b51b89d561ef9dd0e91b1cc6c76e7 (patch) | |
tree | f4a915face206ee25a131c1943c4555d8d9d8f67 /www/mozilla | |
parent | 60be3b02d0790dae5c171452b17b5e6e21b6c8d3 (diff) | |
download | pkgsrc-17285d04a20b51b89d561ef9dd0e91b1cc6c76e7.tar.gz |
Use !empty instead of != "", which was causing some troubles.
Diffstat (limited to 'www/mozilla')
-rw-r--r-- | www/mozilla/Makefile.common | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/www/mozilla/Makefile.common b/www/mozilla/Makefile.common index 3051c7003e1..82f342719df 100644 --- a/www/mozilla/Makefile.common +++ b/www/mozilla/Makefile.common @@ -1,4 +1,4 @@ -# $NetBSD: Makefile.common,v 1.39 2004/06/01 15:01:17 taya Exp $ +# $NetBSD: Makefile.common,v 1.40 2004/06/01 22:41:21 xtraeme Exp $ MOZ_DIST_VER?= ${MOZ_VER} DISTNAME?= mozilla-source-${MOZ_DIST_VER} @@ -88,7 +88,7 @@ CONFIGURE_ARGS+= --enable-xinerama # avoid creating a .mozilla directory in the users home # directory SCRIPTS_ENV+= HOME="${WRKDIR}" -.if (${MOZCONFDIR} != "") +.if !empty(MOZCONFDIR) SCRIPTS_ENV+= TMPMOZCONFDIR="${WRKDIR}/${MOZCONFDIR}" .endif |