diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2005-03-17 00:13:11 +0000 |
---|---|---|
committer | Gerald W. Carter <jerry@samba.org> | 2008-04-23 08:46:22 -0500 |
commit | f1820fa60eb415a1952116a2c0e4b924c032cd4f (patch) | |
tree | ff6a1bb9ad932a245c8577711a66697703c2484f /docs/scripts | |
parent | f87f8fee8f933c4a4f0f2b7e5f2123749f70eaf8 (diff) | |
download | samba-f1820fa60eb415a1952116a2c0e4b924c032cd4f.tar.gz samba-f1820fa60eb415a1952116a2c0e4b924c032cd4f.tar.bz2 samba-f1820fa60eb415a1952116a2c0e4b924c032cd4f.zip |
Autogenerate parts of the makefile rather then calling seperate shell scripts.
Avoids a lot of copying images that are already present.
(This used to be commit 310b572db83e5a5a14eb4ac7dabbbff60172c668)
Diffstat (limited to 'docs/scripts')
-rwxr-xr-x | docs/scripts/copy-images.sh | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/docs/scripts/copy-images.sh b/docs/scripts/copy-images.sh deleted file mode 100755 index cba43d9d99..0000000000 --- a/docs/scripts/copy-images.sh +++ /dev/null @@ -1,12 +0,0 @@ -#!/bin/sh -ROLE="$1" -XMLFILE="$2" -FROM="$3" -TO="$4" - -for x in `xsltproc --stringparam prepend "" --stringparam append "" --stringparam role "$ROLE" xslt/find-image-dependencies.xsl "$XMLFILE"` -do - test -f $FROM/$x || make $FROM/$x || exit 1 - cp -u $FROM/$x $TO/$x || exit 1 -done -exit |