summaryrefslogtreecommitdiff
path: root/packaging/SGI
diff options
context:
space:
mode:
authorHerb Lewis <herb@samba.org>2003-06-06 22:51:28 +0000
committerHerb Lewis <herb@samba.org>2003-06-06 22:51:28 +0000
commit93867b77735c3d729793cf10fd3bed43022e6e06 (patch)
tree3896d231384af50931810bb2a103ff1aab18aabe /packaging/SGI
parente485bc7e3e192c419e4a9b9dc435f07cfb4535fc (diff)
downloadsamba-93867b77735c3d729793cf10fd3bed43022e6e06.tar.gz
samba-93867b77735c3d729793cf10fd3bed43022e6e06.tar.bz2
samba-93867b77735c3d729793cf10fd3bed43022e6e06.zip
make this work for older version of perl
(This used to be commit ed4a12a812ed154f747dac6d1a9601df1ee5298f)
Diffstat (limited to 'packaging/SGI')
-rwxr-xr-xpackaging/SGI/idb.pl2
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;