summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Bushnell <tb@debian.org>2006-10-27 20:02:53 -0700
committerBryan Newbold <bnewbold@robocracy.org>2017-02-20 00:05:36 -0800
commit47f059b59bbf83867fc40065343727bc85081368 (patch)
tree1cab8cdda0b0d077c27f36295cd5a09fb64326bd
parentbf6075ed4733b4bd6c59a3419fd7ef3c8321ec76 (diff)
downloadscm-47f059b59bbf83867fc40065343727bc85081368.tar.gz
scm-47f059b59bbf83867fc40065343727bc85081368.zip
Import Debian changes 5e3-4debian/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).
-rw-r--r--debian/changelog8
-rwxr-xr-xdebian/rules8
2 files changed, 15 insertions, 1 deletions
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 <tb@debian.org> 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 \