diff options
| -rw-r--r-- | Makefile | 4 | ||||
| -rw-r--r-- | debian/changelog | 8 | ||||
| -rwxr-xr-x | debian/rules | 4 | 
3 files changed, 13 insertions, 3 deletions
@@ -107,7 +107,9 @@ cfiles = scmmain.c scm.c time.c repl.c ioext.c scl.c sys.c eval.c	\  	findexec.c script.c debug.c byte.c differ.c  ofiles = scm.o time.o repl.o scl.o sys.o eval.o subr.o unif.o rope.o \  	continue.o findexec.o script.o debug.o -# continue-ia64.o +ifeq ($(ARCH),ia64) +ofiles += continue-ia64.o +endif  ifiles = Init$(VERSION).scm Transcen.scm Link.scm Macro.scm Macexp.scm \  	Tscript.scm compile.scm Iedline.scm Idiffer.scm  hobfiles = hobbit.scm scmhob.scm scmhob.h diff --git a/debian/changelog b/debian/changelog index 5be7a7f..c631754 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,11 @@ +scm (5e3-2) unstable; urgency=low + +  * Makefile (ofiles): If $(ARCH) is ia64, add continue-ia64.o. +  * debian/rules: Set ARCH from DEB_BUILD_ARCH when making scmlit. +  (Closes: #395312) + + -- Thomas Bushnell, BSG <tb@debian.org>  Thu, 26 Oct 2006 21:50:09 -0700 +  scm (5e3-1) unstable; urgency=low    * New upstream release. diff --git a/debian/rules b/debian/rules index 763f2a2..d5ea1e8 100755 --- a/debian/rules +++ b/debian/rules @@ -62,9 +62,9 @@ build-stamp:  	dh_testdir  	cp debian/require.scm.debian require.scm  ifeq ($(DEB_BUILD_ARCH), m68k) -	${MAKE} scmlit CFLAGS="-g -Wall" +	${MAKE} scmlit CFLAGS="-g -Wall" ARCH=$(DEB_BUILD_ARCH)  else -	${MAKE} scmlit +	${MAKE} scmlit ARCH=$(DEB_BUILD_ARCH)  endif  	test -e /usr/share/slib || \  	  (echo "Must have slib installed for compile" && exit 1)  | 
