diff options
author | Herb Lewis <herb@samba.org> | 2000-05-03 01:07:33 +0000 |
---|---|---|
committer | Herb Lewis <herb@samba.org> | 2000-05-03 01:07:33 +0000 |
commit | 7b3afe300b1ef54f7daa0f2dce6fd8c256e04b37 (patch) | |
tree | a1ff1b6393b1b884332c72e0e348d7bceebbbbdb /packaging | |
parent | 158d9cada8c12725981d495faf8ed9f5d4306e23 (diff) | |
download | samba-7b3afe300b1ef54f7daa0f2dce6fd8c256e04b37.tar.gz samba-7b3afe300b1ef54f7daa0f2dce6fd8c256e04b37.tar.xz samba-7b3afe300b1ef54f7daa0f2dce6fd8c256e04b37.zip |
merge 2.0 changes
Diffstat (limited to 'packaging')
-rwxr-xr-x | packaging/SGI/idb.pl | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/packaging/SGI/idb.pl b/packaging/SGI/idb.pl index 00843777ca5..78c355c36d4 100755 --- a/packaging/SGI/idb.pl +++ b/packaging/SGI/idb.pl @@ -85,7 +85,7 @@ closedir(DIR); # install the swat files chdir "$SRCDIR/source"; system("chmod +x ./script/installswat.sh"); -system("./script/installswat.sh ../packaging/SGI/swat ./"); +system("./script/installswat.sh ../packaging/SGI/swat ./ ../packaging/SGI/swat/using_samba"); system("cp -f ../swat/README ../packaging/SGI/swat"); chdir $curdir; @@ -100,6 +100,7 @@ chdir $curdir; # the files installed in docs include all the original files in docs plus all # the "*.doc" files from the source tree @docs = sort byfilename grep (!/^docs\/$/ & (/^source\/.*\.doc$/ | /^docs\//),@allfiles); +@docs = grep(!/htmldocs\/using_samba/, @docs); @swatfiles = sort grep(/^packaging\/SGI\/swat/, @allfiles); @catman = sort grep(/^packaging\/SGI\/catman/ & !/\/$/, @allfiles); @@ -140,22 +141,22 @@ while(@bins) { if (index($nextfile,'$')) { if ($filename eq "smbpasswd") { - print IDB "f 0755 root sys usr/samba/bin/$filename $SRCPFX/source/$nextfile $PKG.sw.base nostrip\n"; + 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 nostrip 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"; + 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"; } elsif ($filename eq "sambalp") { - print IDB "f 0755 root sys usr/samba/bin/$filename $SRCPFX/packaging/SGI/$filename $PKG.sw.base nostrip\n"; + print IDB "f 0755 root sys usr/samba/bin/$filename $SRCPFX/packaging/SGI/$filename $PKG.sw.base \n"; } elsif ($filename eq "smbprint") { print IDB "f 0755 root sys usr/samba/bin/$filename $SRCPFX/packaging/SGI/$filename $PKG.sw.base\n"; } else { - print IDB "f 0755 root sys usr/samba/bin/$filename $SRCPFX/source/$nextfile $PKG.sw.base nostrip\n"; + print IDB "f 0755 root sys usr/samba/bin/$filename $SRCPFX/source/$nextfile $PKG.sw.base \n"; } } } |