Fix bad slang modules file

The modules file had a few errors that prevented slang from being built.
First the src/elfobjs file needed to be created before make started.
Second it needed to be configured without external png, pcre and onig
libraries it doesn't need for this application.
This commit is contained in:
Kyle Rankin 2018-02-26 13:28:11 -08:00
parent 34296b54a6
commit 1b8ac07a58
No known key found for this signature in database
GPG Key ID: 555577116BFA74B9

View File

@ -11,6 +11,9 @@ slang_configure := ./configure \
--prefix "/" \ --prefix "/" \
--host i386-elf-linux \ --host i386-elf-linux \
--with-png=no \ --with-png=no \
--with-pcre=no \
--with-onig=no \
&& mkdir src/elfobjs
slang_target := \ slang_target := \
$(MAKE_JOBS) \ $(MAKE_JOBS) \