mirror of
https://github.com/samba-team/samba.git
synced 2024-12-25 23:21:54 +03:00
53522ac994
This will be needed once we start to use the XML entities for the configure-dependent paths. Change-Id: I2b64f02bb365cc099178b63b2b24bdb239dbb7c1 Signed-off-by: Andrew Bartlett <abartlet@samba.org> Reviewed-by: Michael Adam <obnox@samba.org>
36 lines
942 B
Bash
Executable File
36 lines
942 B
Bash
Executable File
#!/bin/sh
|
|
#
|
|
# This is the fallback table for when we use the docs-xml build
|
|
# system. When build as part of the main waf build, these are set to
|
|
# the full correct path for the system.
|
|
#
|
|
echo "<!DOCTYPE section [
|
|
<!ENTITY pathconfig.SCRIPTSBINDIR '\${prefix}/sbin'>
|
|
<!ENTITY pathconfig.LOCKDIR '\${prefix}/var/lock'>
|
|
<!ENTITY pathconfig.NCALRPCDIR '\${prefix}/var/run/ncalrpc'>
|
|
<!ENTITY pathconfig.PIDDIR '\${prefix}/var/run'>
|
|
<!ENTITY pathconfig.STATEDIR '\${prefix}/var/locks'>
|
|
<!ENTITY pathconfig.PRIVATE_DIR '\${prefix}/private'>
|
|
<!ENTITY pathconfig.SMB_PASSWD_FILE '\${prefix}/private/smbpasswd'>
|
|
<!ENTITY pathconfig.WINBINDD_SOCKET_DIR '\${prefix}/var/run/ncalrpc'>
|
|
]>"
|
|
|
|
DIR=.
|
|
if [ "x$1" != "x" ]
|
|
then
|
|
DIR="$1"
|
|
fi
|
|
|
|
OLD=`pwd`
|
|
cd $DIR
|
|
|
|
echo "<section>"
|
|
for I in `find . -mindepth 2 -type f -name '*.xml' | sort -t/ -k3 | xargs`
|
|
do
|
|
cat $I
|
|
done
|
|
echo "</section>"
|
|
|
|
|
|
cd $OLD
|