libsodium: remove unnecessary options and separate install step

This commit is contained in:
Tony Theodore 2015-12-06 00:30:56 +11:00
parent ce796c1b3f
commit 597fccc921
1 changed files with 4 additions and 4 deletions

View File

@ -19,8 +19,8 @@ define $(PKG)_UPDATE
endef
define $(PKG)_BUILD
cd '$(1)' && CHOST='$(TARGET)' ./configure \
$(MXE_CONFIGURE_OPTS) \
--prefix='$(PREFIX)/$(TARGET)'
$(MAKE) -C '$(1)' -j '$(JOBS)' install -j '1'
cd '$(1)' && ./configure \
$(MXE_CONFIGURE_OPTS)
$(MAKE) -C '$(1)' -j '$(JOBS)'
$(MAKE) -C '$(1)' -j 1 install
endef