From 5102c2f516528630e36edb84d1b1bcc8c4fc1bb9 Mon Sep 17 00:00:00 2001
From: Ehsan Akhgari <ehsan@mozilla.com>
Date: Wed, 26 Sep 2012 15:15:41 -0400
Subject: [PATCH] Bug 793953 follow-up: use the ?= syntax to get rid of the
 explicit condition; irc-r=glandium

DONTBUILD this either!
---
 client.mk | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/client.mk b/client.mk
index 040de49db916f..3fb739f3988c1 100644
--- a/client.mk
+++ b/client.mk
@@ -61,9 +61,7 @@ endif
 AUTOCONF ?= $(shell which autoconf-2.13 autoconf2.13 autoconf213 2>/dev/null | grep -v '^no autoconf' | head -1)
 
 # See if the autoconf package was installed through fink
-ifeq (,$(strip $(AUTOCONF)))
-AUTOCONF = $(shell which fink >/dev/null 2>&1 && echo `which fink`/../../lib/autoconf2.13/bin/autoconf)
-endif
+AUTOCONF ?= $(shell which fink >/dev/null 2>&1 && echo `which fink`/../../lib/autoconf2.13/bin/autoconf)
 
 ifeq (,$(strip $(AUTOCONF)))
 AUTOCONF=$(error Could not find autoconf 2.13)
-- 
GitLab