summaryrefslogtreecommitdiffstats
path: root/src/binutils.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/binutils.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/binutils.mk')
-rw-r--r--src/binutils.mk4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/binutils.mk b/src/binutils.mk
index 9eeffe6..ca20942 100644
--- a/src/binutils.mk
+++ b/src/binutils.mk
@@ -15,7 +15,7 @@ define $(PKG)_UPDATE
endef
define $(PKG)_BUILD
- cd '$(2)' && ./configure \
+ cd '$(1)' && ./configure \
--target='$(TARGET)' \
--prefix='$(PREFIX)' \
--with-gcc \
@@ -23,5 +23,5 @@ define $(PKG)_BUILD
--with-gnu-as \
--disable-nls \
--disable-shared
- $(MAKE) -C '$(2)' all install
+ $(MAKE) -C '$(1)' all install
endef