Change 33246 by [EMAIL PROTECTED] on 2008/02/07 17:32:19
Subject: Re: [PATCH] Re: Perl @ 32984 (also relevant to [perl #33849])
From: Andy Dougherty <[EMAIL PROTECTED]>
Date: Fri, 1 Feb 2008 12:39:39 -0500 (EST)
Message-ID: <[EMAIL PROTECTED]>
Affected files ...
... //depot/perl/hints/irix_6.sh#68 edit
Differences ...
==== //depot/perl/hints/irix_6.sh#68 (text) ====
Index: perl/hints/irix_6.sh
--- perl/hints/irix_6.sh#67~33040~ 2008-01-22 15:49:53.000000000 -0800
+++ perl/hints/irix_6.sh 2008-02-07 09:32:19.000000000 -0800
@@ -344,7 +344,9 @@
# (We only need to do this for cc, not for gcc. ccversion is computed above.)
case "$ccversion" in
'') ;; # gcc. Do nothing.
-*) cppstdin=`pwd`/cppstdin
+*) # Inside this call-back unit, we are down in the UU/ subdirectory,
+ # but Configure will look for cppstdin one level up.
+ cd ..; cppstdin=`pwd`/cppstdin; cd UU
cpprun="$cppstdin"
;;
esac
End of Patch.