Introduction
Introduction Statistics Contact Development Disclaimer Help
tRevert "fixed STLDFLAG order in broken st Makefile" - st - [fork] customized b…
git clone git://src.adamsgaard.dk/st
Log
Files
Refs
README
LICENSE
---
commit 274d46ace00003d1df718b974d17642cbce167d5
parent 9c61f29bb7da237907e42875ebe7d0084e8ab1ac
Author: Hiltjo Posthuma <[email protected]>
Date: Wed, 13 Sep 2017 22:40:36 +0200
Revert "fixed STLDFLAG order in broken st Makefile"
This reverts commit 7f990328e4fec8dfaaad311cb8af2304b58c872e.
tthis 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
t@@ -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
You are viewing proxied material from mx1.adamsgaard.dk. The copyright of proxied material belongs to its original authors. Any comments or complaints in relation to proxied material should be directed to the original authors of the content concerned. Please see the disclaimer for more details.