vis

a vi-like editor based on Plan 9's structural regular expressions

git clone https://9o.is/git/vis.git

commit d913154ab4189e32773b5ff08042747f2ba826ac
parent 2db27664a5bd094739818310c7b92f328aee32d9
Author: Marc André Tanner <mat@brain-dump.org>
Date:   Fri, 15 Jul 2016 13:48:22 +0200

build: properly set LDFLAGS for standalone build dependencies

Might fix #248

Diffstat:
MGNUmakefile | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/GNUmakefile b/GNUmakefile @@ -179,9 +179,9 @@ local: clean standalone: clean [ ! -e dependency/build/local ] || $(MAKE) dependencies-clean - ./configure --environment-only --static + ./configure CFLAGS="-I$(DEPS_INC)" LDFLAGS="-L$(DEPS_LIB)" --environment-only --static CFLAGS="$(CFLAGS)" $(MAKE) dependency/build/libmusl-install - PATH=$(DEPS_BIN):$$PATH PKG_CONFIG_PATH= PKG_CONFIG_LIBDIR= CFLAGS="$(CFLAGS)" $(MAKE) \ + PATH=$(DEPS_BIN):$$PATH PKG_CONFIG_PATH= PKG_CONFIG_LIBDIR= CFLAGS="$(CFLAGS)" LDFLAGS="$(LDFLAGS)" $(MAKE) \ CC=musl-gcc dependency/build/standalone PATH=$(DEPS_BIN):$$PATH PKG_CONFIG_PATH= PKG_CONFIG_LIBDIR= ./configure --static \ CFLAGS="-I$(DEPS_INC) --static -Wl,--as-needed" LDFLAGS="-L$(DEPS_LIB)" CC=musl-gcc