From: Davin McCall Date: Tue, 26 Dec 2017 14:18:52 +0000 (+0000) Subject: Build: use EXTRA_LIBS when building "shutdown". X-Git-Tag: v0.06 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=86501083563728af5712b812593cc21d0bbc0f1a;p=oweals%2Fdinit.git Build: use EXTRA_LIBS when building "shutdown". --- 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 $@