st
simple terminal
git clone https://9o.is/git/st.git
commit d2fad81d5939556a708006b36190d0608c3d6fab parent a7ad542cb2689c8b0fbfa1466ae7d06b888f61a1 Author: Hiltjo Posthuma <hiltjo@codemadness.org> Date: Wed, 13 Sep 2017 22:40:36 +0200 Revert "fixed STLDFLAG order in broken st Makefile" This reverts commit af742e131fbe7ad18d27b30889245bd70b70c936. this was wrong as pointed out by k0ga: "STLDFLAGS is about flags to the linker, for example -L not about -l for that reason it must go before the object list". Diffstat:
| M | Makefile | | | 2 | +- |
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Makefile b/Makefile @@ -27,7 +27,7 @@ x.o: arg.h st.h win.h $(OBJ): config.h config.mk st: $(OBJ) - $(CC) -o $@ $(OBJ) $(STLDFLAGS) + $(CC) $(STLDFLAGS) -o $@ $(OBJ) clean: rm -f st $(OBJ) st-$(VERSION).tar.gz