Skip to content

Commit

Permalink
Bug 1412460 - Simplify config.guess invocation; r=mshal
Browse files Browse the repository at this point in the history
The config.guess file is checked into source control. I'm not sure
under what conditions we wouldn't fail to find this file. So the
$(wildcard) shouldn't be necessary.

MozReview-Commit-ID: KCctPFW3Eab

--HG--
extra : rebase_source : 2b9f674bdffc95ac4e1999f9a5d8b7ffa13e8d74
  • Loading branch information
indygreg committed Oct 27, 2017
1 parent 0bd6f6c commit 8994099
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions client.mk
Original file line number Diff line number Diff line change
Expand Up @@ -51,11 +51,7 @@ SH := /bin/sh
PERL ?= perl
PYTHON ?= $(shell which python2.7 > /dev/null 2>&1 && echo python2.7 || echo python)

CONFIG_GUESS_SCRIPT := $(wildcard $(TOPSRCDIR)/build/autoconf/config.guess)
ifdef CONFIG_GUESS_SCRIPT
CONFIG_GUESS := $(shell $(CONFIG_GUESS_SCRIPT))
endif

CONFIG_GUESS := $(shell $(TOPSRCDIR)/build/autoconf/config.guess)

####################################
# Sanity checks
Expand Down

0 comments on commit 8994099

Please sign in to comment.