Skip to content
Snippets Groups Projects
Commit 2f26f461 authored by Robert Kaiser's avatar Robert Kaiser
Browse files

bug 450948 - Remove Mac case from AUTOCONF detection code - simple, slightly hacky, new fix, r=ted

parent c42140ec
No related branches found
No related tags found
No related merge requests found
......@@ -89,11 +89,9 @@ endif
TOPSRCDIR = $(CWD)
endif
ifeq (Darwin,$(shell uname -s))
AUTOCONF ?= autoconf213
else
AUTOCONF ?= $(shell which autoconf-2.13 autoconf2.13 autoconf213 | head -1)
endif
# try to find autoconf 2.13 - discard errors from 'which'
# MacOS X 10.4 sends "no autoconf*" errors to stdout, discard those via grep
AUTOCONF ?= $(shell which autoconf-2.13 autoconf2.13 autoconf213 2>/dev/null | grep -v '^no autoconf' | head -1)
MKDIR := mkdir
SH := /bin/sh
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment