diff options
-rw-r--r-- | ChangeLog-99b | 7 | ||||
-rw-r--r-- | docs/ACE-guidelines.html | 6 |
2 files changed, 10 insertions, 3 deletions
diff --git a/ChangeLog-99b b/ChangeLog-99b index 5af2e053713..efa6a7e8a86 100644 --- a/ChangeLog-99b +++ b/ChangeLog-99b @@ -1,3 +1,10 @@ +Thu Jul 08 22:15:50 1999 David L. Levine <levine@cs.wustl.edu> + + * docs/ACE-guidelines.html: changed the perl magic that + goes at the top of every perl script, to pick up perl + from the users path. This new version works on HP/UX. + Thanks to Carlos for divining it. + Thu Jul 08 22:05:31 1999 David L. Levine <levine@cs.wustl.edu> * ace/config-linux-common.h: added #define of diff --git a/docs/ACE-guidelines.html b/docs/ACE-guidelines.html index 7fc6ba5c9ff..2621707f4c9 100644 --- a/docs/ACE-guidelines.html +++ b/docs/ACE-guidelines.html @@ -1023,9 +1023,9 @@ bgcolor="#ffffff"> the following code at the top of the script to pick up perl from the users <code>PATH</code>:<br> <pre> - eval '(exit $?0)' && eval 'exec perl -S $0 ${1+"$@"}' - & eval 'exec perl -S $0 $argv:q' - if 0; +eval '(exit $?0)' && + eval 'exec perl -S $0 ${1+"$@"}' & + eval 'exec perl -S $0 $argv:q' if 0; </pre><p> <li>Never, never, never start the first line of a script |