pinosaur
/
st.git
/ commitdiff
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
9c61f29
)
Revert "fixed STLDFLAG order in broken st Makefile"
author
Hiltjo Posthuma
<hiltjo@codemadness.org>
Wed, 13 Sep 2017 20:40:36 +0000
(22:40 +0200)
committer
Hiltjo Posthuma
<hiltjo@codemadness.org>
Wed, 13 Sep 2017 20:40:36 +0000
(22:40 +0200)
This reverts commit
7f990328e4fec8dfaaad311cb8af2304b58c872e
.
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".
Makefile
patch
|
blob
|
history
diff --git
a/Makefile
b/Makefile
index
c678ead
..
128ee9d
100644
(file)
--- 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