From 5256de47929273a4a74201c41de1b1f0c6ab0a68 Mon Sep 17 00:00:00 2001 From: Chris Hanson Date: Sun, 15 Apr 2007 17:36:57 +0000 Subject: [PATCH] Use correct output extension for built-in object handles. --- v7/src/compiler/machines/C/cout.scm | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/v7/src/compiler/machines/C/cout.scm b/v7/src/compiler/machines/C/cout.scm index 0557488f2..91fffaef9 100644 --- a/v7/src/compiler/machines/C/cout.scm +++ b/v7/src/compiler/machines/C/cout.scm @@ -1,6 +1,6 @@ #| -*-Scheme-*- -$Id: cout.scm,v 1.36 2007/04/15 15:41:12 cph Exp $ +$Id: cout.scm,v 1.37 2007/04/15 17:36:57 cph Exp $ Copyright (C) 1986, 1987, 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, @@ -103,7 +103,8 @@ USA. (declare-dynamic-object-initialization handle))) (define (default-file-handle) - (or (liarc-object-pathname->handle *compiler-output-pathname*) + (or (liarc-object-pathname->handle + (pathname-new-type *compiler-output-pathname* (c-output-extension))) "handle")) (define (stringify suffix initial-label lap-code info-output-pathname) -- 2.25.1