libyaml: cleanup style

This commit is contained in:
Tony Theodore 2020-06-21 16:02:22 +10:00
parent 8281509442
commit 8b95520df6
1 changed files with 5 additions and 5 deletions

View File

@ -10,9 +10,9 @@ $(PKG)_GH_CONF := yaml/libyaml/releases/latest
$(PKG)_DEPS := cc
define $(PKG)_BUILD
cd '$(SOURCE_DIR)' && ./bootstrap
cd '$(BUILD_DIR)' && $(SOURCE_DIR)/configure \
$(MXE_CONFIGURE_OPTS)
$(MAKE) -C '$(BUILD_DIR)' -j '$(JOBS)' $(MXE_DISABLE_PROGRAMS)
$(MAKE) -C '$(BUILD_DIR)' -j 1 install $(MXE_DISABLE_PROGRAMS)
cd '$(SOURCE_DIR)' && ./bootstrap
cd '$(BUILD_DIR)' && $(SOURCE_DIR)/configure \
$(MXE_CONFIGURE_OPTS)
$(MAKE) -C '$(BUILD_DIR)' -j '$(JOBS)' $(MXE_DISABLE_PROGRAMS)
$(MAKE) -C '$(BUILD_DIR)' -j 1 install $(MXE_DISABLE_PROGRAMS)
endef