diff options
author | adamw <adamw@df743ca5-7f9a-e211-a948-0013205c9059> | 2005-11-13 12:49:43 +0800 |
---|---|---|
committer | adamw <adamw@df743ca5-7f9a-e211-a948-0013205c9059> | 2005-11-13 12:49:43 +0800 |
commit | f01270bf9b48cd66f4b2068776556d170cb87945 (patch) | |
tree | e14e7bc8b2c9c47740e4630f269e556686d2b7a3 /Mk | |
parent | c26fe981eea52ac44383e7c89e4aa39f82270e73 (diff) | |
download | marcuscom-ports-f01270bf9b48cd66f4b2068776556d170cb87945.tar marcuscom-ports-f01270bf9b48cd66f4b2068776556d170cb87945.tar.gz marcuscom-ports-f01270bf9b48cd66f4b2068776556d170cb87945.tar.bz2 marcuscom-ports-f01270bf9b48cd66f4b2068776556d170cb87945.tar.lz marcuscom-ports-f01270bf9b48cd66f4b2068776556d170cb87945.tar.xz marcuscom-ports-f01270bf9b48cd66f4b2068776556d170cb87945.tar.zst marcuscom-ports-f01270bf9b48cd66f4b2068776556d170cb87945.zip |
Add 2 missing closing curly braces. Also, add back in the tacos that I
stayed up ALL NIGHT COOKING JUST FOR YOU, AND THERE YOU GO AND JUST DUMP
OUT MY TACOS! SEE IF I EVER COOK TACOS FOR YOU AGAIN!
Note also that, while I haven't tested this, I doubt that most of the
substitutions will work anyway.
Furthermore, I believe that ${MOZILLA} is not the optimal end variable
to set here. I think that a new variable name that's not used in other
ports should be used, so that we can properly track and deprecate the
${MOZILLA} stuff currently in use. I propose that the end variable
be ${GECKO, as in --with-mozilla=${GECKO}.
Also, I strongly advise that all non-exported variables be prefixes with
'_' whenever possible.
Heh. '_' is a robot smileyface ::P
git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@5117 df743ca5-7f9a-e211-a948-0013205c9059
Diffstat (limited to 'Mk')
-rw-r--r-- | Mk/bsd.mozilla.mk | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/Mk/bsd.mozilla.mk b/Mk/bsd.mozilla.mk index 77d511f40..ef07e8c74 100644 --- a/Mk/bsd.mozilla.mk +++ b/Mk/bsd.mozilla.mk @@ -2,7 +2,7 @@ # ex:ts=4 # # $FreeBSD$ -# $MCom$ +# $MCom: ports/Mk/bsd.mozilla.mk,v 1.7 2005/11/12 07:55:19 ahze Exp $ # # 4 column tabs prevent hair loss and tooth decay! @@ -73,10 +73,11 @@ MOZILLA= #### CHANGE ME .endif .if defined(MOZILLA) && ${_GECKO_ALL:M${MOZILLA}}!="" -BUILD_DEPENDS+= ${MOZILLA_${PLIST}}:${MOZILLA_${DEPENDS} -RUN_DEPENDS+= ${MOZILLA_${PLIST}}:${MOZILLA_${DEPENDS} +BUILD_DEPENDS+= ${MOZILLA_${PLIST}}:${MOZILLA_${DEPENDS}} +RUN_DEPENDS+= ${MOZILLA_${PLIST}}:${MOZILLA_${DEPENDS}} .else BROKEN="Bad use of USE_MOZILLA" .endif .endif # end all +# HERE THERE BE TACOS |