mirror of
https://github.com/sonertari/SSLproxy
synced 2024-11-19 21:25:28 +00:00
Escape # in shell invocation
This fixes the following make error on Mac OS X versions that we don't explicitly support yet due to missing sources: GNUmakefile:55: *** unterminated call to function `shell': missing `)'. Stop. Reported by: Justin Garrick
This commit is contained in:
parent
00253f34db
commit
992c90db3b
@ -51,7 +51,7 @@ endif
|
||||
XNU_VERSION?= $(shell uname -a|sed 's/^.*root:xnu-//g'|sed 's/~.*$$//')
|
||||
OSX_VERSION?= $(shell sw_vers -productVersion)
|
||||
ifeq ($(wildcard xnu/xnu-$(XNU_VERSION)),)
|
||||
XNU_VERSION= $(shell awk '/# $(OSX_VERSION)$$/ {print $$2}' xnu/GNUmakefile)
|
||||
XNU_VERSION= $(shell awk '/\# $(OSX_VERSION)$$/ {print $$2}' xnu/GNUmakefile)
|
||||
endif
|
||||
ifneq ($(wildcard xnu/xnu-$(XNU_VERSION)),)
|
||||
FEATURES+= -DHAVE_PF
|
||||
|
Loading…
Reference in New Issue
Block a user