diff options
author | Tim Potter <tpot@samba.org> | 2003-07-11 04:48:08 +0000 |
---|---|---|
committer | Tim Potter <tpot@samba.org> | 2003-07-11 04:48:08 +0000 |
commit | 80e457bdf4afd27cd15b8ec9248ff9951befc5cf (patch) | |
tree | 6f74c1efe071b654b862ba865da12a56df2326c2 | |
parent | 988b1d8e5b70d1978e4dd3e61f8d65daa38e1055 (diff) | |
download | samba-80e457bdf4afd27cd15b8ec9248ff9951befc5cf.tar.gz samba-80e457bdf4afd27cd15b8ec9248ff9951befc5cf.tar.bz2 samba-80e457bdf4afd27cd15b8ec9248ff9951befc5cf.zip |
Remove references to obsolete codepage binaries, codepages and unicode
map files.
Other part of fix for bug 218.
(This used to be commit 00551b12c7736050fe53592d3955624e67f04994)
-rwxr-xr-x | packaging/Solaris/makepkg.sh | 31 |
1 files changed, 0 insertions, 31 deletions
diff --git a/packaging/Solaris/makepkg.sh b/packaging/Solaris/makepkg.sh index b57e182e4a..bd370e9a62 100755 --- a/packaging/Solaris/makepkg.sh +++ b/packaging/Solaris/makepkg.sh @@ -11,37 +11,6 @@ INSTALL_BASE=/usr/local add_dynamic_entries() { - # First build the codepages and append codepage entries to prototype - echo "#\n# Codepages \n#" - echo d none samba/lib/codepages 0755 root other - - CODEPAGELIST="437 737 850 852 861 932 866 949 950 936" - # Check if make_smbcodepage exists - if [ ! -f $DISTR_BASE/source/bin/make_smbcodepage ]; then - echo "Could not find $DISTR_BASE/source/bin/make_smbcodepage to generate codepages.\n\ - Please create the binaries before packaging." >&2 - exit 1 - fi - - for p in $CODEPAGELIST; do - $DISTR_BASE/source/bin/make_smbcodepage c $p $DISTR_BASE/source/codepages/codepage_def.$p $DISTR_BASE/source/codepages/codepage.$p - echo f none samba/lib/codepages/codepage.$p=source/codepages/codepage.$p 0644 root other - done - - # Create unicode maps - if [ ! -f $DISTR_BASE/source/bin/make_unicodemap ]; then - echo "Missing $DISTR_BASE/source/bin/make_unicodemap. Aborting." >&2 - exit 1 - fi - - # Pull in all the unicode map files from source/codepages/CP*.TXT - list=`find $DISTR_BASE/source/codepages -name "CP*.TXT" | sed 's|^.*CP\(.*\)\.TXT|\1|'` - for umap in $list - do - $DISTR_BASE/source/bin/make_unicodemap $umap $DISTR_BASE/source/codepages/CP$umap.TXT $DISTR_BASE/source/codepages/unicode_map.$umap - echo f none samba/lib/codepages/unicode_map.$umap=source/codepages/unicode_map.$umap 0644 root other - done - # Add the binaries, docs and SWAT files echo "#\n# Binaries \n#" |