wafsamba: fix pidl dependencies to rebuild on pidl changes
[Samba.git] / docs-xml / smbdotconf / generate-file-list.sh
blob7ab1b7caf764bb545dedecde81da11da3efce1bc
1 #!/bin/sh
3 # This is the fallback table for when we use the docs-xml build
4 # system. When build as part of the main waf build, these are set to
5 # the full correct path for the system.
7 echo "<!DOCTYPE section [
8 <!ENTITY pathconfig.SCRIPTSBINDIR '\${prefix}/sbin'>
9 <!ENTITY pathconfig.LOCKDIR '\${prefix}/var/lock'>
10 <!ENTITY pathconfig.NCALRPCDIR '\${prefix}/var/run/ncalrpc'>
11 <!ENTITY pathconfig.PIDDIR '\${prefix}/var/run'>
12 <!ENTITY pathconfig.STATEDIR '\${prefix}/var/locks'>
13 <!ENTITY pathconfig.PRIVATE_DIR '\${prefix}/private'>
14 <!ENTITY pathconfig.BINDDNS_DIR '\${prefix}/bind-dns'>
15 <!ENTITY pathconfig.SMB_PASSWD_FILE '\${prefix}/private/smbpasswd'>
16 <!ENTITY pathconfig.WINBINDD_SOCKET_DIR '\${prefix}/var/run/winbindd'>
17 <!ENTITY pathconfig.CACHEDIR '\${prefix}/var/cache'>
18 <!ENTITY pathconfig.NTP_SIGND_SOCKET_DIR '\${prefix}/var/lib/ntp_signd'>
19 <!ENTITY pathconfig.MITKDCPATH '\${prefix}/sbin/krb5kdc'>
20 ]>"
22 DIR=.
23 if [ "x$1" != "x" ]
24 then
25 DIR="$1"
28 OLD=`pwd`
29 cd $DIR
31 echo "<section>"
32 for I in `find . -mindepth 2 -type f -name '*.xml' | sort -t/ -k3 | xargs`
33 do
34 cat $I
35 done
36 echo "</section>"
39 cd $OLD