From f1820fa60eb415a1952116a2c0e4b924c032cd4f Mon Sep 17 00:00:00 2001 From: Jelmer Vernooij Date: Thu, 17 Mar 2005 00:13:11 +0000 Subject: 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) --- docs/scripts/copy-images.sh | 12 ------------ 1 file changed, 12 deletions(-) delete mode 100755 docs/scripts/copy-images.sh (limited to 'docs/scripts/copy-images.sh') 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 -- cgit