~ chicken-core (chicken-5) b015ea54a74dc2b14ac56608836f3df4835d6304


commit b015ea54a74dc2b14ac56608836f3df4835d6304
Author:     felix <felix@call-with-current-continuation.org>
AuthorDate: Tue Dec 29 01:10:10 2009 +0100
Commit:     felix <felix@call-with-current-continuation.org>
CommitDate: Tue Dec 29 01:10:10 2009 +0100

    allow ARCH override in config file

diff --git a/Makefile.bsd b/Makefile.bsd
index e7693cd5..8a25194d 100644
--- a/Makefile.bsd
+++ b/Makefile.bsd
@@ -33,7 +33,7 @@ SRCDIR = ./
 
 # platform configuration
 
-ARCH = $(shell sh $(SRCDIR)/config-arch.sh)
+ARCH ?= $(shell sh $(SRCDIR)/config-arch.sh)
 
 # options
 
diff --git a/Makefile.cross-linux-mingw b/Makefile.cross-linux-mingw
index 949ced1c..70d664fc 100644
--- a/Makefile.cross-linux-mingw
+++ b/Makefile.cross-linux-mingw
@@ -34,7 +34,7 @@ SRCDIR = ./
 # platform configuration
 
 DLLSINPATH = 1
-ARCH = x86
+ARCH ?= x86
 HACKED_APPLY = 1
 WINDOWS = 1
 
diff --git a/Makefile.cygwin b/Makefile.cygwin
index 3ecea7bc..e98f6d98 100644
--- a/Makefile.cygwin
+++ b/Makefile.cygwin
@@ -33,7 +33,7 @@ SRCDIR = ./
 
 # platform configuration
 
-ARCH = x86
+ARCH ?= x86
 HACKED_APPLY=1
 DLLSINPATH = 1
 
diff --git a/Makefile.linux b/Makefile.linux
index 5e0463cf..330b7f78 100644
--- a/Makefile.linux
+++ b/Makefile.linux
@@ -33,7 +33,7 @@ SRCDIR ?= ./
 
 # platform configuration
 
-ARCH = $(shell sh $(SRCDIR)/config-arch.sh)
+ARCH ?= $(shell sh $(SRCDIR)/config-arch.sh)
 
 # options
 
diff --git a/Makefile.macosx b/Makefile.macosx
index cef3d848..31c3fbe3 100644
--- a/Makefile.macosx
+++ b/Makefile.macosx
@@ -33,7 +33,7 @@ SRCDIR = ./
 
 # platform configuration
 
-ARCH = $(shell sh $(SRCDIR)/config-arch.sh)
+ARCH ?= $(shell sh $(SRCDIR)/config-arch.sh)
 
 # commands
 
diff --git a/Makefile.mingw b/Makefile.mingw
index 7115e068..e338d574 100644
--- a/Makefile.mingw
+++ b/Makefile.mingw
@@ -35,7 +35,7 @@ SRCDIR =.$(SEP)
 # platform configuration
 
 DLLSINPATH = 1
-ARCH = x86
+ARCH ?= x86
 WINDOWS = 1
 WINDOWS_SHELL = 1
 UNAME_SYS = MinGW
diff --git a/Makefile.mingw-msys b/Makefile.mingw-msys
index c88bf53a..560f2a5a 100644
--- a/Makefile.mingw-msys
+++ b/Makefile.mingw-msys
@@ -34,7 +34,7 @@ SRCDIR = ./
 # platform configuration
 
 DLLSINPATH = 1
-ARCH = x86
+ARCH ?= x86
 HACKED_APPLY = 1
 WINDOWS = 1
 
diff --git a/Makefile.solaris b/Makefile.solaris
index 59482d2b..b7de7dec 100644
--- a/Makefile.solaris
+++ b/Makefile.solaris
@@ -33,7 +33,7 @@ SRCDIR = ./
 
 # platform configuration
 
-ARCH = $(shell sh $(SRCDIR)/config-arch.sh)
+ARCH ?= $(shell sh $(SRCDIR)/config-arch.sh)
 
 # options
 
Trap