diff options
author | Gerald Carter <jerry@samba.org> | 2003-09-24 17:14:01 +0000 |
---|---|---|
committer | Gerald Carter <jerry@samba.org> | 2003-09-24 17:14:01 +0000 |
commit | dc10e71cbbd682606c46b272ea5ec1712186be82 (patch) | |
tree | dd07d6ac59986f5f13401b1ded21f2edc9c27ff5 /packaging/Solaris | |
parent | 0ce94613fa1c0a9419ac53139df7e89f6e428242 (diff) | |
download | samba-dc10e71cbbd682606c46b272ea5ec1712186be82.tar.gz samba-dc10e71cbbd682606c46b272ea5ec1712186be82.tar.bz2 samba-dc10e71cbbd682606c46b272ea5ec1712186be82.zip |
make sure to install the *msg files for SWAT
(This used to be commit 12a49e096421de34d2daa934fc4f33ec4e91dfff)
Diffstat (limited to 'packaging/Solaris')
-rwxr-xr-x | packaging/Solaris/makepkg.sh.tmpl | 16 |
1 files changed, 7 insertions, 9 deletions
diff --git a/packaging/Solaris/makepkg.sh.tmpl b/packaging/Solaris/makepkg.sh.tmpl index d1da9d5f12..2a46321f81 100755 --- a/packaging/Solaris/makepkg.sh.tmpl +++ b/packaging/Solaris/makepkg.sh.tmpl @@ -98,15 +98,6 @@ add_dynamic_entries() # Create a symbolic link to the Samba book in docs/ for beginners echo 's none samba/docs/samba_book=htmldocs/using_samba' - echo "#\n# Text Docs \n#" - echo d none samba/docs/textdocs 0755 root other - cd $DISTR_BASE/docs/textdocs - for textdoc in * - do - if [ -f $textdoc ]; then - echo f none samba/docs/textdocs/$textdoc=docs/textdocs/$textdoc 0644 root other - fi - done echo "#\n# SWAT \n#" cd $DISTR_BASE list=`find swat -type d | grep -v "/CVS$"` @@ -119,6 +110,13 @@ add_dynamic_entries() do echo "f none samba/$i=$i 0644 root other" done + # add the .msg files for SWAT + echo "#\n# msg files \n#" + for file in $DISTR_BASE/source/po/*.msg ; do + bfile=`basename $file` + echo f none /usr/local/samba/lib/$bfile=source/po/$bfile + done + echo "#\n# HTML documentation for SWAT\n#" cd $DISTR_BASE/docs/htmldocs for htmldoc in * |