BUG in hints/hpux.sh
authorJeff McDougal <jmcdo@cris.com>
Tue, 3 Dec 1996 13:33:05 +0000 (08:33 -0500)
committerChip Salzenberg <chip@atlantic.net>
Fri, 6 Dec 1996 06:56:00 +0000 (18:56 +1200)
commit57560dc7335aaed00185c3cccea22fe709754f18
tree4fd47dd305ae7b369727631aab3c5543d6429dd0
parent735aabf6eb108bfac2ee42bafd64901e409d5589
BUG in hints/hpux.sh

Tom, I was not able to run the Configure script on my new HP D-server running HP-UX 10.01.
The problem was a single line in the hints/hpux.sh file:

xxcontext=`grep $(printf %#x $(getconf CPU_VERSION)) /usr/include/sys/unistd.h`

I commented this line out and inserted the following to get a clean execution under the
Bourne shell:

DECCPU=`getconf CPU_VERSION`
HEXCPU=`printf %#x ${DECCPU}`
xxcontext=`grep $HEXCPU /usr/include/sys/unistd.h`

I am very happy to have Perl 5.003 on my new development box.

Jeff McDougal

p5p-msgid: <32A42C11.7FA2@cris.com>
hints/hpux.sh