From 657f72652760414552f09a5cacfd5433acef577a Mon Sep 17 00:00:00 2001 From: Andrew Johnson Date: Mon, 9 Mar 2015 14:24:44 -0500 Subject: [PATCH] Fix FIND_TOOL --- configure/CONFIG_BASE | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure/CONFIG_BASE b/configure/CONFIG_BASE index c6cdaac6e..373b8311e 100644 --- a/configure/CONFIG_BASE +++ b/configure/CONFIG_BASE @@ -54,7 +54,7 @@ BASE_CPPFLAGS += $(OSITHREAD_DEFAULT_STACK_FLAGS_$(OSITHREAD_USE_DEFAULT_STACK)) # Where to find the installed build tools TOOLS = $(EPICS_BASE_HOST_BIN) -FIND_TOOL = $(firstword $(wildcard $$(TOOLS)/$(1) $(TOP)/src/tools/$(1))) +FIND_TOOL = $(firstword $(wildcard $(TOOLS)/$(1) $(TOP)/src/tools/$(1))) #--------------------------------------------------------------- # Epics base build tools and tool flags