diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 1999-04-29 22:53:00 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 1999-04-29 22:53:00 +0000 |
commit | c25c5c3c87d89b68324dc98b7c8aaabc750c7cec (patch) | |
tree | 2943af9b1f84d88d863a9ba36a234877561bf5f0 /gnu/usr.bin/perl/hints/qnx.sh | |
parent | 37583d269f066aa8aa04ea18126b188d12257e6d (diff) |
perl5.005_03 (stock)
Diffstat (limited to 'gnu/usr.bin/perl/hints/qnx.sh')
-rw-r--r-- | gnu/usr.bin/perl/hints/qnx.sh | 22 |
1 files changed, 10 insertions, 12 deletions
diff --git a/gnu/usr.bin/perl/hints/qnx.sh b/gnu/usr.bin/perl/hints/qnx.sh index 947c98f6799..b53a33d7370 100644 --- a/gnu/usr.bin/perl/hints/qnx.sh +++ b/gnu/usr.bin/perl/hints/qnx.sh @@ -36,18 +36,8 @@ # Resolved in 970211 Beta # lib/io_udp.t test hangs because of a bug in getsockname(). # Fixed in latest BETA socket3r.lib -# If there is a softlink in your path, Findbin will fail. -# This is a documented feature of perl's getpwd(). # There is currently no support for dynamically linked # libraries. -# op/magic.t failure due to a feature of QNX which rewrites script -# names before they are executed. I think you'll find that if -# you cd `fullpath -t` before doing the make, the test will pass. -#---------------------------------------------------------------- -# At present, all QNX systems are equivalent architectures, -# so it might be reasonable to call archname=qnx rather than -# making an unnecessary distinction between AT-qnx and PCI-qnx, -# for example. #---------------------------------------------------------------- # These hints were submitted by: # Norton T. Allen @@ -62,6 +52,14 @@ echo "Some tests may fail. Please read the hints/qnx.sh file." echo "" #---------------------------------------------------------------- +# At present, all QNX systems are equivalent architectures, +# so it is reasonable to call archname=x86-qnx rather than +# making an unnecessary distinction between AT-qnx and PCI-qnx, +# for example. +#---------------------------------------------------------------- +archname='x86-qnx' + +#---------------------------------------------------------------- # QNX doesn't come with a csh and the ports of tcsh I've used # don't work reliably: #---------------------------------------------------------------- @@ -145,7 +143,7 @@ if [ -z "`which nm 2>/dev/null`" ]; then Creating a quick-and-dirty nm cover for Configure to use: EOF - cat >../UU/nm <<-'EOF' + cat >./UU/nm <<-'EOF' #! /bin/sh #__USAGE #%C <lib> [<lib> ...] @@ -161,7 +159,7 @@ if [ -z "`which nm 2>/dev/null`" ]; then } }' EOF - chmod +x ../UU/nm + chmod +x ./UU/nm fi cppstdin=`which cpp 2>/dev/null` |