From 47f059b59bbf83867fc40065343727bc85081368 Mon Sep 17 00:00:00 2001 From: Thomas Bushnell Date: Fri, 27 Oct 2006 20:02:53 -0700 Subject: Import Debian changes 5e3-4 scm (5e3-4) unstable; urgency=low * debian/rules (PLATFORM): New variable, to hold the SCM platform name; linux normally, but linux-ia64 on ia64. (SCM_OPTIONS): Instead of always giving -p linux, use $(PLATFORM). --- debian/changelog | 8 ++++++++ debian/rules | 8 +++++++- 2 files changed, 15 insertions(+), 1 deletion(-) diff --git a/debian/changelog b/debian/changelog index 30003ba..a5ec543 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,11 @@ +scm (5e3-4) unstable; urgency=low + + * debian/rules (PLATFORM): New variable, to hold the SCM platform name; + linux normally, but linux-ia64 on ia64. + (SCM_OPTIONS): Instead of always giving -p linux, use $(PLATFORM). + + -- Thomas Bushnell, BSG Fri, 27 Oct 2006 20:02:53 -0700 + scm (5e3-3) unstable; urgency=low * debian/rules (install): Don't install slibcat, since we build it at diff --git a/debian/rules b/debian/rules index 20b98cd..b2deef9 100755 --- a/debian/rules +++ b/debian/rules @@ -20,7 +20,13 @@ else COMPILER_OPTIONS= endif -SCM_OPTIONS = -p linux \ +ifeq ($(DEB_BUILD_ARCH),ia64) +PLATFORM=linux-ia64 +else +PLATFORM=linux +endif + +SCM_OPTIONS = -p $(PLATFORM) \ --compiler-options="$(COMPILER_OPTIONS)" \ -F cautious \ -F bignums \ -- cgit v1.2.3