summaryrefslogtreecommitdiff
path: root/hints/irix_6.sh
diff options
context:
space:
mode:
authorAndy Dougherty <doughera@lafayette.edu>2008-02-01 07:39:39 -0500
committerRafael Garcia-Suarez <rgarciasuarez@gmail.com>2008-02-07 17:32:19 +0000
commit08c5d564156fedb3379080cf8d14db501bd06f5e (patch)
tree9f4ac44a2db498fa195f9fae8105b0ae648be201 /hints/irix_6.sh
parentaad570aaa63ce05413f1e93d9aaa533614bb7901 (diff)
downloadperl-08c5d564156fedb3379080cf8d14db501bd06f5e.tar.gz
Re: [PATCH] Re: Perl @ 32984 (also relevant to [perl #33849])
Message-ID: <Pine.LNX.4.64.0802011239170.1831@fractal.phys.lafayette.edu> p4raw-id: //depot/perl@33246
Diffstat (limited to 'hints/irix_6.sh')
-rw-r--r--hints/irix_6.sh4
1 files changed, 3 insertions, 1 deletions
diff --git a/hints/irix_6.sh b/hints/irix_6.sh
index e3df634c9c..93d6618a36 100644
--- a/hints/irix_6.sh
+++ b/hints/irix_6.sh
@@ -344,7 +344,9 @@ esac
# (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