diff options
author | Herb Lewis <herb@samba.org> | 2003-06-06 22:51:28 +0000 |
---|---|---|
committer | Herb Lewis <herb@samba.org> | 2003-06-06 22:51:28 +0000 |
commit | 93867b77735c3d729793cf10fd3bed43022e6e06 (patch) | |
tree | 3896d231384af50931810bb2a103ff1aab18aabe /packaging/SGI | |
parent | e485bc7e3e192c419e4a9b9dc435f07cfb4535fc (diff) | |
download | samba-93867b77735c3d729793cf10fd3bed43022e6e06.tar.gz |
make this work for older version of perl
(This used to be commit ed4a12a812ed154f747dac6d1a9601df1ee5298f)
Diffstat (limited to 'packaging/SGI')
-rwxr-xr-x | packaging/SGI/idb.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packaging/SGI/idb.pl b/packaging/SGI/idb.pl index 72f573b8ee..e49c9c61ef 100755 --- a/packaging/SGI/idb.pl +++ b/packaging/SGI/idb.pl @@ -368,7 +368,7 @@ sub get_line { $_ = <MAKEFILE>; chomp; s/^\s*/ /; - substr($line,$cont,1,$_); + substr($line,$cont,1) = $_; } $line =~ s/\$\(EXEEXT\)/$EXEEXT/g; $line =~ s/\$\(srcdir\)/$srcdir/g; |