From 86501083563728af5712b812593cc21d0bbc0f1a Mon Sep 17 00:00:00 2001 From: Davin McCall Date: Tue, 26 Dec 2017 14:18:52 +0000 Subject: [PATCH] Build: use EXTRA_LIBS when building "shutdown". --- src/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Makefile b/src/Makefile index 21c4cf6..04c8116 100644 --- a/src/Makefile +++ b/src/Makefile @@ -17,7 +17,7 @@ dinitctl: dinitctl.o $(CXX) -o dinitctl dinitctl.o $(EXTRA_LIBS) shutdown: shutdown.o - $(CXX) -o shutdown shutdown.o + $(CXX) -o shutdown shutdown.o $(EXTRA_LIBS) $(objects): %.o: %.cc $(CXX) $(CXXOPTS) -Idasynq -c $< -o $@ -- 2.25.1