#!/bin/sh
# mktexdir.opt to determine various manipulations of the filenames.
# Sourced from mktexdir.
#
# [email protected] and [email protected]. Public domain.
# $Id: mktexdir.opt,v 1.2 1997/11/30 12:29:46 olaf Exp $
# Set append-only bit on created directories.
case "$MT_FEATURES" in
*appendonlydir*) MT_APPEND_MASK=+t;;
esac
|