forked from mozilla/gecko-dev
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bug 666908: Remove MAKE:=gmake. Fix editor colorization quoting probl…
…em. r=khuey
- Loading branch information
Joey Armstrong
committed
Jun 24, 2011
1 parent
db943d1
commit 5cff72f
Showing
1 changed file
with
4 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
# -*- makefile -*- | ||
# vim:set ts=8 sw=8 sts=8 noet: | ||
# ***** BEGIN LICENSE BLOCK ***** | ||
# Version: MPL 1.1/GPL 2.0/LGPL 2.1 | ||
# | ||
|
@@ -23,6 +25,7 @@ | |
# Benjamin Smedberg <[email protected]> | ||
# Chase Phillips <[email protected]> | ||
# Mark Mentovai <[email protected]> | ||
# Joey Armstrong <[email protected]> | ||
# | ||
# Alternatively, the contents of this file may be used under the terms of | ||
# either the GNU General Public License Version 2 or later (the "GPL"), or | ||
|
@@ -95,14 +98,11 @@ endif | |
AUTOCONF ?= $(shell which autoconf-2.13 autoconf2.13 autoconf213 2>/dev/null | grep -v '^no autoconf' | head -1) | ||
|
||
ifeq (,$(strip $(AUTOCONF))) | ||
AUTOCONF=$(error Couldn't find autoconf 2.13) | ||
AUTOCONF=$(error Could not find autoconf 2.13) | ||
endif | ||
|
||
MKDIR := mkdir | ||
SH := /bin/sh | ||
ifndef MAKE | ||
MAKE := gmake | ||
endif | ||
PERL ?= perl | ||
PYTHON ?= python | ||
|
||
|