Fix typo: we no longer have "etc/c-build-bands.sh".
authorChris Hanson <org/chris-hanson/cph>
Fri, 4 May 2007 01:27:30 +0000 (01:27 +0000)
committerChris Hanson <org/chris-hanson/cph>
Fri, 4 May 2007 01:27:30 +0000 (01:27 +0000)
v7/src/Makefile.in
v7/src/configure.ac

index bbda9e11e04700d8a5207ad8b9c6d538d4b7cde5..508dd93a439e52b0829c9472042526583ed64a26 100644 (file)
@@ -1,4 +1,4 @@
-# $Id: Makefile.in,v 1.33 2007/05/03 03:40:07 cph Exp $
+# $Id: Makefile.in,v 1.34 2007/05/04 01:27:30 cph Exp $
 #
 # Copyright (C) 1986, 1987, 1988, 1989, 1990, 1991, 1992, 1993, 1994,
 #     1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004,
@@ -69,13 +69,12 @@ AUXDIR = @AUXDIR@
 EDETC = $(AUXDIR)/edwin/etc
 
 COMPILE_SCRIPT = @COMPILE_SCRIPT@
-BUILD_BANDS_SCRIPT = @BUILD_BANDS_SCRIPT@
 
 all:
        ( cd microcode && $(MAKE) all )
        $(srcdir)/etc/$(COMPILE_SCRIPT) $(srcdir)
        ( cd microcode && $(MAKE) liarc-bundles )
-       $(srcdir)/etc/$(BUILD_BANDS_SCRIPT)
+       $(srcdir)/etc/build-bands.sh
 
 c: boot-compiler.com
        $(srcdir)/etc/c-prepare.sh
index 01ebc2466f182ada7faddabd61384032d33aca60..9f1c55a38a182956a021fc3701c9dd1ceca3cf3a 100644 (file)
@@ -1,7 +1,7 @@
 dnl Process this file with autoconf to produce a configure script.
 
 AC_INIT([MIT/GNU Scheme], [7.7.91], [bug-mit-scheme@gnu.org], [mit-scheme])
-AC_REVISION([$Id: configure.ac,v 1.9 2007/04/30 07:08:43 cph Exp $])
+AC_REVISION([$Id: configure.ac,v 1.10 2007/05/04 01:27:24 cph Exp $])
 AC_CONFIG_SRCDIR([microcode/boot.c])
 AC_PROG_MAKE_SET
 
@@ -40,20 +40,17 @@ fi
 case ${enable_native_code} in
 c)
     COMPILE_SCRIPT=c-compile.sh
-    BUILD_BANDS_SCRIPT=c-build-bands.sh
     INSTALL_COM=:
     SYSTEM_BASE_NAME=mit-scheme-c
     ;;
 *)
     COMPILE_SCRIPT=compile.sh
-    BUILD_BANDS_SCRIPT=build-bands.sh
     INSTALL_COM='$(INSTALL_DATA)'
     SYSTEM_BASE_NAME=mit-scheme
     ;;
 esac
 
 AC_SUBST([COMPILE_SCRIPT])
-AC_SUBST([BUILD_BANDS_SCRIPT])
 AC_SUBST([INSTALL_COM])
 
 AC_PROG_INSTALL