From f0eadc6e324c18c74554814bf65592b4e4231343 Mon Sep 17 00:00:00 2001 From: Kristofer Hallin Date: Tue, 20 Aug 2024 09:21:43 +0200 Subject: [PATCH] Fixed: [HOST_VENDOR must be defined before we use it](https://github.com/clicon/clixon/issues/541) --- apps/restconf/Makefile.in | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/apps/restconf/Makefile.in b/apps/restconf/Makefile.in index 728ca18b..e62f7ac1 100644 --- a/apps/restconf/Makefile.in +++ b/apps/restconf/Makefile.in @@ -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@