Change 32963 by [EMAIL PROTECTED] on 2008/01/11 20:28:34
Subject: [PATCH] sh doesn't know about !
From: Andy Armstrong <[EMAIL PROTECTED]>
Message-Id: <[EMAIL PROTECTED]>
Date: Fri, 11 Jan 2008 19:34:25 +0000
Affected files ...
... //depot/perl/Configure#678 edit
Differences ...
==== //depot/perl/Configure#678 (xtext) ====
Index: perl/Configure
--- perl/Configure#677~32953~ 2008-01-11 05:36:54.000000000 -0800
+++ perl/Configure 2008-01-11 12:28:34.000000000 -0800
@@ -8996,10 +8996,13 @@
if test -f $dtrace
then
- if ! $dtrace -h -s ../perldtrace.d \
+ if $dtrace -h -s ../perldtrace.d \
-o perldtrace.tmp >/dev/null 2>&1 \
&& rm -f perldtrace.tmp
then
+ echo " "
+ echo "Good: your $dtrace knows about the -h flag."
+ else
cat >&2 <<EOM
*** $me: Fatal Error: $dtrace doesn't support -h flag
End of Patch.