pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/www/firefox



Module Name:    pkgsrc
Committed By:   gutteridge
Date:           Sun Dec 23 01:11:26 UTC 2018

Modified Files:
        pkgsrc/www/firefox: mozilla-common.mk

Log Message:
firefox: fix .mk file inclusion order issue

bsd.prefs.mk was being included after dependent variables it provides
were referenced, which meant PYTHON_VERSION_DEFAULT wasn't actually
being checked. (No revision bump, because this didn't prevent anything
from building, it's relevant only to those who customize pkgsrc build
variables.)

OK maya@


To generate a diff of this commit:
cvs rdiff -u -r1.121 -r1.122 pkgsrc/www/firefox/mozilla-common.mk

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/www/firefox/mozilla-common.mk
diff -u pkgsrc/www/firefox/mozilla-common.mk:1.121 pkgsrc/www/firefox/mozilla-common.mk:1.122
--- pkgsrc/www/firefox/mozilla-common.mk:1.121  Wed Dec 12 14:08:50 2018
+++ pkgsrc/www/firefox/mozilla-common.mk        Sun Dec 23 01:11:26 2018
@@ -1,10 +1,12 @@
-# $NetBSD: mozilla-common.mk,v 1.121 2018/12/12 14:08:50 ryoon Exp $
+# $NetBSD: mozilla-common.mk,v 1.122 2018/12/23 01:11:26 gutteridge Exp $
 #
 # common Makefile fragment for mozilla packages based on gecko 2.0.
 #
 # used by www/firefox/Makefile
 # used by www/seamonkey/Makefile
 
+.include "../../mk/bsd.prefs.mk"
+
 # Python 2.7 and Python 3.5 or later are required simultaneously.
 PYTHON_VERSIONS_ACCEPTED=      27
 PYTHON_FOR_BUILD_ONLY=         tool
@@ -23,8 +25,6 @@ USE_TOOLS+=           pkg-config perl gmake autoc
 USE_LANGUAGES+=                c99 gnu++14
 UNLIMIT_RESOURCES+=    datasize
 
-.include "../../mk/bsd.prefs.mk"
-
 TOOL_DEPENDS+=         cbindgen-[0-9]*:../../devel/cbindgen
 .if ${MACHINE_ARCH} == "sparc64"
 CONFIGURE_ARGS+=       --disable-nodejs



Home | Main Index | Thread Index | Old Index