diff options
author | Andrew Tridgell <tridge@samba.org> | 2005-08-05 19:45:01 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:31:21 -0500 |
commit | dab115f69fc8c2a99bbb9c060c85e5a0b86f21ac (patch) | |
tree | da351ceec7d1a8f399e2f40067590fed822a41ee | |
parent | baf66d862615086451da4e96f912c562a86d32db (diff) | |
download | samba-dab115f69fc8c2a99bbb9c060c85e5a0b86f21ac.tar.gz samba-dab115f69fc8c2a99bbb9c060c85e5a0b86f21ac.tar.bz2 samba-dab115f69fc8c2a99bbb9c060c85e5a0b86f21ac.zip |
r9137: fixed installswat to handle the deep directory structure of qooxdoo
(This used to be commit b1f0b7b12b5b3b921054921d3417e820057f1ccd)
-rw-r--r-- | source4/script/installswat.sh | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/source4/script/installswat.sh b/source4/script/installswat.sh index b6e64c7995..8b9cdb459f 100644 --- a/source4/script/installswat.sh +++ b/source4/script/installswat.sh @@ -20,8 +20,13 @@ installdir() { done } -installdir *.esp *.js */*.js */*.ejs */*.esp -installdir */*.png */*.ico */*.gif */*.css +installdir `find . -name '*.js'` +installdir `find . -name '*.esp'` +installdir `find . -name '*.css'` +installdir `find . -name '*.png'` +installdir `find . -name '*.ico'` +installdir `find . -name '*.gif'` +installdir `find . -name '*.ejs'` cat << EOF ====================================================================== |