diff options
author | Luke <fried.roadkill+ght@gmail.com> | 2017-10-09 18:30:59 (GMT) |
---|---|---|
committer | Tony Theodore <tonyt@logyst.com> | 2017-10-10 04:31:50 (GMT) |
commit | 78f9235232ab9b4dd3393a646497010beb6f449c (patch) | |
tree | f86c2605990ad0816c61500d7289f7724983e849 /src/freexl.mk | |
parent | 2aae4632d53d9f8f7286ed30b1adfa430eb6990d (diff) | |
download | mxe-78f9235232ab9b4dd3393a646497010beb6f449c.zip mxe-78f9235232ab9b4dd3393a646497010beb6f449c.tar.gz mxe-78f9235232ab9b4dd3393a646497010beb6f449c.tar.bz2 |
Style updates
Diffstat (limited to 'src/freexl.mk')
-rw-r--r-- | src/freexl.mk | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/freexl.mk b/src/freexl.mk index 736aa10..399c9da 100644 --- a/src/freexl.mk +++ b/src/freexl.mk @@ -18,10 +18,10 @@ define $(PKG)_UPDATE endef define $(PKG)_BUILD - cd '$(SOURCE_DIR)' && ./configure \ + cd '$(BUILD_DIR)' && '$(SOURCE_DIR)/configure' \ $(MXE_CONFIGURE_OPTS) - $(MAKE) -C '$(SOURCE_DIR)' -j '$(JOBS)' $(MXE_DISABLE_PROGRAMS) - $(MAKE) -C '$(SOURCE_DIR)' -j 1 $(INSTALL_STRIP_LIB) + $(MAKE) -C '$(BUILD_DIR)' -j '$(JOBS)' $(MXE_DISABLE_PROGRAMS) + $(MAKE) -C '$(BUILD_DIR)' -j 1 $(INSTALL_STRIP_LIB) # the test program comes from the freexl sources itself (test_xl.c) '$(TARGET)-gcc' \ |