summaryrefslogtreecommitdiffstats
path: root/src/zlib.mk
diff options
context:
space:
mode:
authorVolker Grabsch <vog@notjusthosting.com>2008-11-08 18:06:50 (GMT)
committerVolker Grabsch <vog@notjusthosting.com>2008-11-08 18:06:50 (GMT)
commit78beb3926927cf5aa78dc6e3f199ecc7cdbd23b6 (patch)
tree98ea0587c0dca4c0f29a2103018990c4f5785a0c /src/zlib.mk
parent71e6d3845156d032672deeaffd7e7948000f0a76 (diff)
downloadmxe-78beb3926927cf5aa78dc6e3f199ecc7cdbd23b6.zip
mxe-78beb3926927cf5aa78dc6e3f199ecc7cdbd23b6.tar.gz
mxe-78beb3926927cf5aa78dc6e3f199ecc7cdbd23b6.tar.bz2
use $(1) instead of $(2) to address to temporary build dir
Diffstat (limited to 'src/zlib.mk')
-rw-r--r--src/zlib.mk4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/zlib.mk b/src/zlib.mk
index 7e3a990..4bebfe9 100644
--- a/src/zlib.mk
+++ b/src/zlib.mk
@@ -16,7 +16,7 @@ define $(PKG)_UPDATE
endef
define $(PKG)_BUILD
- cd '$(2)' && CC='$(TARGET)-gcc' RANLIB='$(TARGET)-ranlib' ./configure \
+ cd '$(1)' && CC='$(TARGET)-gcc' RANLIB='$(TARGET)-ranlib' ./configure \
--prefix='$(PREFIX)/$(TARGET)'
- $(MAKE) -C '$(2)' -j '$(JOBS)' install
+ $(MAKE) -C '$(1)' -j '$(JOBS)' install
endef