diff options
author | Gerald Carter <jerry@samba.org> | 2003-09-22 16:12:03 +0000 |
---|---|---|
committer | Gerald Carter <jerry@samba.org> | 2003-09-22 16:12:03 +0000 |
commit | 0f8f2b57ea41f5481ec8da2e98958087b6b07a13 (patch) | |
tree | 0e8071d8e79d409e9104dca89bb7822a13afa199 /packaging/Solaris/makepkg.sh.tmpl | |
parent | 53a2a389902b6ffa37dd61f0c0a496744fc2e2b3 (diff) | |
download | samba-0f8f2b57ea41f5481ec8da2e98958087b6b07a13.tar.gz samba-0f8f2b57ea41f5481ec8da2e98958087b6b07a13.tar.xz samba-0f8f2b57ea41f5481ec8da2e98958087b6b07a13.zip |
solaris packagaing fixes from Brian King
Diffstat (limited to 'packaging/Solaris/makepkg.sh.tmpl')
-rwxr-xr-x | packaging/Solaris/makepkg.sh.tmpl | 16 |
1 files changed, 15 insertions, 1 deletions
diff --git a/packaging/Solaris/makepkg.sh.tmpl b/packaging/Solaris/makepkg.sh.tmpl index 55a2da2c6a0..d1da9d5f129 100755 --- a/packaging/Solaris/makepkg.sh.tmpl +++ b/packaging/Solaris/makepkg.sh.tmpl @@ -18,7 +18,14 @@ add_dynamic_entries() for binfile in * do if [ -f $binfile ]; then - echo f none samba/bin/$binfile=source/bin/$binfile 0755 root other + case $file in + CP*.so) + echo echo f none samba/lib/charset/$binfile=source/bin/$binfile 0755 root other + ;; + *) + echo f none samba/bin/$binfile=source/bin/$binfile 0755 root other + ;; + esac fi done @@ -42,6 +49,13 @@ add_dynamic_entries() echo s none /usr/lib/nss_winbind.so.2=/usr/lib/libnss_winbind.so 0755 root other fi + # add the .dat codepages + echo "#\n# Codepages \n#" + for file in $DISTR_BASE/source/codepages/*.dat ; do + bfile=`basename $file` + echo f none /usr/local/samba/lib/$bfile=source/codepages/$bfile + done + # Add the manpages echo "#\n# man pages \n#" echo d none /usr ? ? ? |