From: Simon Ruderich Date: Sun, 9 Jun 2019 12:11:31 +0000 (+0200) Subject: nss: Makefile: fix typo in LD_PRELOAD variable name X-Git-Tag: 0.1~79 X-Git-Url: https://ruderich.org/simon/gitweb/?p=nsscash%2Fnsscash.git;a=commitdiff_plain;h=1254d2cd5f83548f0c2df436b40e4a8c73bb0b0e nss: Makefile: fix typo in LD_PRELOAD variable name --- diff --git a/nss/Makefile b/nss/Makefile index f103daf..bbc43ee 100644 --- a/nss/Makefile +++ b/nss/Makefile @@ -26,8 +26,8 @@ libnss_cash.so.2 libcash_test.so: $(wildcard *.c) $(wildcard *.h) # Tests test: tests/gr tests/pw tests/group.nsscash tests/passwd.nsscash - LD_LIBRARY_PATH=. LD_PRELOD= ./tests/gr - LD_LIBRARY_PATH=. LD_PRELOD= ./tests/pw + LD_LIBRARY_PATH=. LD_PRELOAD= ./tests/gr + LD_LIBRARY_PATH=. LD_PRELOAD= ./tests/pw tests/%: tests/%.c libcash_test.so $(CC) -o $@ $(CFLAGS) $(CPPFLAGS) $(LDFLAGS) \