Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorisaacs <i@izs.me>2012-02-17 22:08:40 +0400
committerisaacs <i@izs.me>2012-02-18 00:39:45 +0400
commit4672872ddde70e079670d2a12079cb303ef41dbb (patch)
tree303f1d68a95879a6d3eb9406189d137727e5e4c3 /Makefile
parent7a1a62ec6e168876493688cfa45097567a332267 (diff)
Fix #2770 Compile the OS X pkg as ia32
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 2a6b70b4658..16094957496 100644
--- a/Makefile
+++ b/Makefile
@@ -173,8 +173,8 @@ pkg: $(PKG)
$(PKG):
-rm -rf $(PKGDIR)
- $(WAF) configure --prefix=/usr/local --without-snapshot
- DESTDIR=$(PKGDIR) $(WAF) install
+ $(WAF) configure --prefix=/usr/local --without-snapshot --dest-cpu=ia32
+ CFLAGS=-m32 DESTDIR=$(PKGDIR) $(WAF) install
$(packagemaker) \
--id "org.nodejs.NodeJS-$(VERSION)" \
--doc tools/osx-pkg.pmdoc \