Skip to content

Commit

Permalink
Fixed: [HOST_VENDOR must be defined before we use it](#541)
Browse files Browse the repository at this point in the history
  • Loading branch information
krihal authored and olofhagsand committed Aug 20, 2024
1 parent 3b45cf9 commit f0eadc6
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions apps/restconf/Makefile.in
Original file line number Diff line number Diff line change
Expand Up @@ -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@
Expand All @@ -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@

Expand Down

0 comments on commit f0eadc6

Please sign in to comment.