diff options
author | Herb Lewis <herb@samba.org> | 2003-06-07 00:46:04 +0000 |
---|---|---|
committer | Herb Lewis <herb@samba.org> | 2003-06-07 00:46:04 +0000 |
commit | dab21ae3b1a9c31cf07dd65225eb6db3854b846e (patch) | |
tree | 1c2e010821093c5ad314f28a12925cd278efbbc1 | |
parent | 4a2a54cd68faf6c86994679a8f5d309f55d29544 (diff) | |
download | samba-dab21ae3b1a9c31cf07dd65225eb6db3854b846e.tar.gz |
fix up a couple paths
-rwxr-xr-x | packaging/SGI/idb.pl | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/packaging/SGI/idb.pl b/packaging/SGI/idb.pl index e49c9c61efd..529695b14b2 100755 --- a/packaging/SGI/idb.pl +++ b/packaging/SGI/idb.pl @@ -132,9 +132,6 @@ while(@bins) { if ($filename eq "smbpasswd") { print IDB "f 0755 root sys usr/samba/bin/$filename $SRCPFX/source/$nextfile $PKG.sw.base \n"; } - elsif ($filename eq "findsmb") { - print IDB "f 0755 root sys usr/samba/bin/$filename $SRCPFX/packaging/SGI/$filename $PKG.sw.base\n"; - } elsif ($filename eq "swat") { print IDB "f 4755 root sys usr/samba/bin/$filename $SRCPFX/source/$nextfile $PKG.sw.base preop(\"chroot \$rbase /etc/init.d/samba stop\") exitop(\"chroot \$rbase /usr/samba/scripts/startswat.sh\") removeop(\"chroot \$rbase /sbin/cp /etc/inetd.conf /etc/inetd.conf.O ; chroot \$rbase /sbin/sed -e '/^swat/D' -e '/^#SWAT/D' /etc/inetd.conf.O >/etc/inetd.conf; /etc/killall -HUP inetd || true\")\n"; } @@ -371,8 +368,8 @@ sub get_line { substr($line,$cont,1) = $_; } $line =~ s/\$\(EXEEXT\)/$EXEEXT/g; - $line =~ s/\$\(srcdir\)/$srcdir/g; - $line =~ s/\$\(builddir\)/$builddir/g; + $line =~ s/\$\(srcdir\)//g; + $line =~ s/\$\(builddir\)//g; $line =~ s/\$\(\S*\)\s*//g; $line =~ s/\s\s*/ /g; @line = split(' ',$line); |