summaryrefslogtreecommitdiff
path: root/mcon
diff options
context:
space:
mode:
authorrmanfredi <rmanfredi@190e5f8e-a817-0410-acf6-e9863daed9af>2008-05-28 08:01:59 +0000
committerrmanfredi <rmanfredi@190e5f8e-a817-0410-acf6-e9863daed9af>2008-05-28 08:01:59 +0000
commita2f5d6f1d076aa5bebcb4f897b746b2658895cb0 (patch)
treeaa12fce147ecfc63b93ce73806115b4d904ea880 /mcon
parentf72f8240cc1bbe341ccb3b8e0fa351d78adf8a68 (diff)
Perl 5.10 no longer supports "$*" anywhere... even in the initial exec line
meant to be parsed by the shell... git-svn-id: https://dist.svn.sourceforge.net/svnroot/dist/trunk/dist@22 190e5f8e-a817-0410-acf6-e9863daed9af
Diffstat (limited to 'mcon')
-rwxr-xr-xmcon/makegloss.SH2
-rwxr-xr-xmcon/mconfig.SH2
-rwxr-xr-xmcon/mlint.SH2
-rwxr-xr-xmcon/mxref.SH2
4 files changed, 4 insertions, 4 deletions
diff --git a/mcon/makegloss.SH b/mcon/makegloss.SH
index 991a214..ffe72a2 100755
--- a/mcon/makegloss.SH
+++ b/mcon/makegloss.SH
@@ -17,7 +17,7 @@ esac
echo "Extracting mcon/makegloss (with variable substitutions)"
$spitshell >makegloss <<!GROK!THIS!
$startperl
- eval "exec perl -S \$0 \$*"
+ eval 'exec perl -S \$0 \${1+"\$@"}'
if \$running_under_some_shell;
!GROK!THIS!
diff --git a/mcon/mconfig.SH b/mcon/mconfig.SH
index 140fb6e..adcf0a2 100755
--- a/mcon/mconfig.SH
+++ b/mcon/mconfig.SH
@@ -17,7 +17,7 @@ esac
echo "Extracting mcon/mconfig (with variable substitutions)"
cat >mconfig <<!GROK!THIS!
$startperl
- eval "exec perl -S \$0 \$*"
+ eval 'exec perl -S \$0 \${1+"\$@"}'
if \$running_under_some_shell;
# $Id$
diff --git a/mcon/mlint.SH b/mcon/mlint.SH
index 7f1f550..62d4021 100755
--- a/mcon/mlint.SH
+++ b/mcon/mlint.SH
@@ -17,7 +17,7 @@ esac
echo "Extracting mcon/mlint (with variable substitutions)"
cat >mlint <<!GROK!THIS!
$startperl
- eval "exec perl -S \$0 \$*"
+ eval 'exec perl -S \$0 \${1+"\$@"}'
if \$running_under_some_shell;
# $Id$
diff --git a/mcon/mxref.SH b/mcon/mxref.SH
index 8e52842..51ea87f 100755
--- a/mcon/mxref.SH
+++ b/mcon/mxref.SH
@@ -17,7 +17,7 @@ esac
echo "Extracting mcon/mxref (with variable substitutions)"
cat >mxref <<!GROK!THIS!
$startperl
- eval "exec perl -S \$0 \$*"
+ eval 'exec perl -S \$0 \${1+"\$@"}'
if \$running_under_some_shell;
# $Id$