Fixed: [HOST_VENDOR must be defined before we use it](https://github.com/clicon/clixon/issues/541)
This commit is contained in:
parent
3b45cf9f4d
commit
f0eadc6e32
1 changed files with 7 additions and 7 deletions
|
|
@ -41,13 +41,6 @@ top_srcdir = @top_srcdir@
|
||||||
CC = @CC@
|
CC = @CC@
|
||||||
CFLAGS = @CFLAGS@
|
CFLAGS = @CFLAGS@
|
||||||
LINKAGE = @LINKAGE@
|
LINKAGE = @LINKAGE@
|
||||||
|
|
||||||
ifeq ($(HOST_VENDOR),apple)
|
|
||||||
INSTALLFLAGS =
|
|
||||||
else
|
|
||||||
INSTALLFLAGS = @INSTALLFLAGS@
|
|
||||||
endif
|
|
||||||
|
|
||||||
LDFLAGS = @LDFLAGS@
|
LDFLAGS = @LDFLAGS@
|
||||||
|
|
||||||
prefix = @prefix@
|
prefix = @prefix@
|
||||||
|
|
@ -61,8 +54,15 @@ libexecdir = @libexecdir@
|
||||||
localstatedir = @localstatedir@
|
localstatedir = @localstatedir@
|
||||||
sysconfdir = @sysconfdir@
|
sysconfdir = @sysconfdir@
|
||||||
includedir = @includedir@
|
includedir = @includedir@
|
||||||
|
|
||||||
HOST_VENDOR = @host_vendor@
|
HOST_VENDOR = @host_vendor@
|
||||||
|
|
||||||
|
ifeq ($(HOST_VENDOR),apple)
|
||||||
|
INSTALLFLAGS =
|
||||||
|
else
|
||||||
|
INSTALLFLAGS = @INSTALLFLAGS@
|
||||||
|
endif
|
||||||
|
|
||||||
# one of fcgi or native:
|
# one of fcgi or native:
|
||||||
with_restconf = @with_restconf@
|
with_restconf = @with_restconf@
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue