diff options
author | Boris Nagaev <bnagaev@gmail.com> | 2017-05-18 23:32:46 (GMT) |
---|---|---|
committer | Boris Nagaev <bnagaev@gmail.com> | 2017-05-18 23:33:51 (GMT) |
commit | 7d91105e74e45371b97a18c491bd8edf06e3cbb0 (patch) | |
tree | b32a5224e95bf263203ab1b5e378d91842c455df | |
parent | 9dacf155dd8a4802ac8884c4477eab7073f2eecc (diff) | |
download | mxe-7d91105e74e45371b97a18c491bd8edf06e3cbb0.zip mxe-7d91105e74e45371b97a18c491bd8edf06e3cbb0.tar.gz mxe-7d91105e74e45371b97a18c491bd8edf06e3cbb0.tar.bz2 |
hunspell: use MXE_DISABLE_CRUFT and -j 1
See https://github.com/mxe/mxe/pull/1752#issuecomment-298328649
-rw-r--r-- | src/hunspell.mk | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/hunspell.mk b/src/hunspell.mk index 60c6792..462fb73 100644 --- a/src/hunspell.mk +++ b/src/hunspell.mk @@ -17,7 +17,8 @@ define $(PKG)_BUILD --with-warnings \ --without-ui \ --with-readline - $(MAKE) -C '$(BUILD_DIR)' -j '$(JOBS)' install bin_PROGRAMS= sbin_PROGRAMS= noinst_PROGRAMS= + $(MAKE) -C '$(BUILD_DIR)' -j '$(JOBS)' $(MXE_DISABLE_CRUFT) + $(MAKE) -C '$(BUILD_DIR)' -j 1 install $(MXE_DISABLE_CRUFT) # Test '$(TARGET)-g++' \ |