#!/bin/sh # # Copyright (c) 1998-1999 by Sun Microsystems, Inc. # All rights reserved. # #pragma ident "@(#)postinstall 1.1 99/10/27 SMI" PATH="/usr/bin:/usr/sbin:$PATH"; export PATH # XEmacs contains directories with an '=' in them. This is unfortunate because # filenames with '=' in them don't work in package prototype files (or likely # with the package database), since '=' means something magic. So we create # the two directories here. base=${BASEDIR}/sfw/lib/xemacs-21.1.7/etc/sgml for name in "ISO_8879=1986" "ISO_8879=1986/entities" do mkdir -p "${base}/${name}" chmod 755 "${base}/${name}" chown root:bin "${base}/${name}" done exit 0