Changeset 8 for trunk/llmozlib2/copy_products_linux.sh
- Timestamp:
- 02/29/08 19:32:35 (2 years ago)
- Files:
-
- trunk/llmozlib2/copy_products_linux.sh (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/llmozlib2/copy_products_linux.sh
r1 r8 1 #!/bin/ sh1 #!/bin/bash 2 2 3 3 # This script copies the relevant headers from the mozilla tree to the llmozlib … … 12 12 export LIBRARIES_DEST="." 13 13 14 export ARCH= i686-linux14 export ARCH=`uname -m`-linux 15 15 16 16 # make sure the destination directories exist. If they don't, the user running the script probably hasn't set them up properly. … … 27 27 SRC="$MOZ_OBJDIR" 28 28 DST="$LIBRARIES_DEST/libraries/$ARCH" 29 for dir in /include/webbrwsr/ /include/docshell/ /include/dom/ /include/xpcom/ /include/widget/ /include/gfx/ /include/string/ /include/uriloader/ /include/view/ /include/layout/ /include/content/ /include/locale/ /include/profdirserviceprovider/ /include/xulapp/ /include/pref/ /include/necko/ /include/nkcache/ / sdk/include/ ; do29 for dir in /include/webbrwsr/ /include/docshell/ /include/dom/ /include/xpcom/ /include/widget/ /include/gfx/ /include/string/ /include/uriloader/ /include/view/ /include/layout/ /include/content/ /include/locale/ /include/profdirserviceprovider/ /include/xulapp/ /include/pref/ /include/necko/ /include/nkcache/ /include/js/ /include/appshell/ /sdk/include/ ; do 30 30 mkdir -p $DST/include/mozilla/${dir} 31 31 cp -LR $SRC/dist/${dir}/* $DST/include/mozilla/${dir}
