Fixed: [HOST_VENDOR must be defined before we use it](https://github.com/clicon/clixon/issues/541)

This commit is contained in:
Kristofer Hallin 2024-08-20 09:21:43 +02:00 committed by Olof Hagsand
parent 3b45cf9f4d
commit f0eadc6e32

View file

@ -41,13 +41,6 @@ top_srcdir = @top_srcdir@
CC = @CC@
CFLAGS = @CFLAGS@
LINKAGE = @LINKAGE@
ifeq ($(HOST_VENDOR),apple)
INSTALLFLAGS =
else
INSTALLFLAGS = @INSTALLFLAGS@
endif
LDFLAGS = @LDFLAGS@
prefix = @prefix@
@ -61,8 +54,15 @@ libexecdir = @libexecdir@
localstatedir = @localstatedir@
sysconfdir = @sysconfdir@
includedir = @includedir@
HOST_VENDOR = @host_vendor@
ifeq ($(HOST_VENDOR),apple)
INSTALLFLAGS =
else
INSTALLFLAGS = @INSTALLFLAGS@
endif
# one of fcgi or native:
with_restconf = @with_restconf@