diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2005-06-13 14:56:25 +0000 |
---|---|---|
committer | Gerald W. Carter <jerry@samba.org> | 2008-04-23 08:46:47 -0500 |
commit | 789fda4de0ea8427e3a40e91bf1fd1d0f7cb2d85 (patch) | |
tree | 330c8cf54c0813a3b15bdb89e96f920417b02d34 /docs/smbdotconf | |
parent | f8a8ad3ba42cb4f4b773b0e7b10b401a328468cc (diff) | |
download | samba-789fda4de0ea8427e3a40e91bf1fd1d0f7cb2d85.tar.gz samba-789fda4de0ea8427e3a40e91bf1fd1d0f7cb2d85.tar.bz2 samba-789fda4de0ea8427e3a40e91bf1fd1d0f7cb2d85.zip |
Fix support for ph-style pages - use ./configure --enable-prentice-hall to enable.
(This used to be commit 6b6c33c21a2ad61a72fb0b6f89fe6fcdec275d41)
Diffstat (limited to 'docs/smbdotconf')
-rwxr-xr-x | docs/smbdotconf/generate-file-list.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/smbdotconf/generate-file-list.sh b/docs/smbdotconf/generate-file-list.sh index 0897332463..b7aa767fcd 100755 --- a/docs/smbdotconf/generate-file-list.sh +++ b/docs/smbdotconf/generate-file-list.sh @@ -9,7 +9,7 @@ OLD=`pwd` cd $DIR echo "<variablelist xmlns:xi=\"http://www.w3.org/2003/XInclude\">" -for I in `find . -type f -name '*.xml' -mindepth 2 | sort -t/ -k3 | xargs` +for I in `find -mindepth 2 . -type f -name '*.xml' | sort -t/ -k3 | xargs` do echo "<xi:include href='$I' parse='xml'/>" done |