Put back error checking in a simpler form thanks to uwe

This commit is contained in:
christos 2013-03-16 02:51:56 +00:00
parent 64e869fe87
commit 0cbc48b3cf
1 changed files with 3 additions and 3 deletions

View File

@ -1,6 +1,6 @@
#!@BSHELL@ -
#
# $NetBSD: host-mkdep.in,v 1.27 2013/03/14 14:55:35 joerg Exp $
# $NetBSD: host-mkdep.in,v 1.28 2013/03/16 02:51:56 christos Exp $
#
# Copyright (c) 1991, 1993
# The Regents of the University of California. All rights reserved.
@ -231,7 +231,7 @@ else
file=${file%.*}
set_objlist $file
@CPP@ "$@" $f | @AWK@ '
((@CPP@ "$@" $f; echo $? >&3) | @AWK@ '
/^#/ {
# Be as tolerant as possible.
sub(/^#(line)? [ 0-9]*\"?/, "")
@ -247,7 +247,7 @@ else
print "'"$objlist"'" ": " $0
'"$AWK_OPTIONAL"'
}
' >> $TMP
' >> $TMP) 3>&1 | (read a; exit $a)
done
fi