mirror of
https://github.com/ashinn/chibi-scheme.git
synced 2025-05-18 21:29:19 +02:00
Remove unnecessary variable quotation
Those variables are now correctly detected when defined in the parent makefile.
This commit is contained in:
parent
3992f14101
commit
d93f885fd0
1 changed files with 2 additions and 2 deletions
|
@ -110,7 +110,7 @@ endif
|
|||
########################################################################
|
||||
# Check for headers (who needs autoconf?)
|
||||
|
||||
ifndef $(SEXP_USE_NTP_GETTIME)
|
||||
ifndef SEXP_USE_NTP_GETTIME
|
||||
SEXP_USE_NTP_GETTIME := $(shell echo "main(){struct ntptimeval n; ntp_gettime(&n);}" | gcc -fsyntax-only -include sys/timex.h -xc - >/dev/null 2>/dev/null && echo 1 || echo 0)
|
||||
endif
|
||||
|
||||
|
@ -118,7 +118,7 @@ ifeq ($(SEXP_USE_NTP_GETTIME),1)
|
|||
CPPFLAGS += -DSEXP_USE_NTPGETTIME
|
||||
endif
|
||||
|
||||
ifndef $(SEXP_USE_INTTYPES)
|
||||
ifndef SEXP_USE_INTTYPES
|
||||
SEXP_USE_INTTYPES := $(shell echo "main(){int_least8_t x;}" | gcc -fsyntax-only -include inttypes.h -xc - >/dev/null 2>/dev/null && echo 1 || echo 0)
|
||||
endif
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue