mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-07-15 16:07:26 +00:00
2fab4b8902
No changes other than source checksum. Signed-off-by: Joe Slater <jslater@windriver.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Signed-off-by: Joe MacDonald <joe_macdonald@mentor.com>
22 lines
561 B
Diff
22 lines
561 B
Diff
Hardcode LIBS instead of using a script to determine available libs
|
|
|
|
We want to avoid this dynamic detection so we have a deterministic
|
|
build.
|
|
|
|
Upstream-Status: Inappropriate [config]
|
|
|
|
Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
|
|
|
|
diff --git a/Makefile b/Makefile
|
|
--- a/Makefile
|
|
+++ b/Makefile
|
|
@@ -5,7 +5,7 @@
|
|
#CFLAGS = -g
|
|
CFLAGS = -O2 -Wall -W -Wshadow #-pedantic -Werror -Wconversion
|
|
|
|
-LIBS = `./vsf_findlibs.sh`
|
|
+LIBS = -lssl -lcrypto -lnsl -lresolv
|
|
LINK = -Wl,-s
|
|
|
|
OBJS = main.o utility.o prelogin.o ftpcmdio.o postlogin.o privsock.o \
|