1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-12 09:18:10 +03:00

r9137: fixed installswat to handle the deep directory structure of qooxdoo

This commit is contained in:
Andrew Tridgell 2005-08-05 19:45:01 +00:00 committed by Gerald (Jerry) Carter
parent b6b531533e
commit b1f0b7b12b

View File

@ -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
======================================================================