- Makefile: fix typo in LDFLAGS: obviously -L, not -I is required here
authorSiesh1oo <siesh1oo@siesh1oo.no>
Mon, 10 Mar 2014 19:12:20 +0000 (20:12 +0100)
committerSiesh1oo <siesh1oo@siesh1oo.no>
Thu, 13 Mar 2014 10:29:03 +0000 (11:29 +0100)
Makefile

index 1bafd2179aa43884e9619c712d860e12caae5048..39b324b4d421458779375c0b0a687a122ed087c4 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -23,7 +23,7 @@ TARGETS = yosys yosys-config
 all: top-all
 
 CXXFLAGS = -Wall -Wextra -ggdb -I"$(shell pwd)" -I${DESTDIR}/include -MD -D_YOSYS_ -fPIC -include kernel/posix_compatibility.h
-LDFLAGS = -I${DESTDIR}/lib
+LDFLAGS = -L${DESTDIR}/lib
 LDLIBS = -lstdc++ -lreadline -lm -ldl
 
 export PATH := ${DESTDIR}/bin:$(PATH)