diff options
author | Nyx (Neal Orman) <nyx@lindenlab.com> | 2012-02-06 17:47:50 -0500 |
---|---|---|
committer | Nyx (Neal Orman) <nyx@lindenlab.com> | 2012-02-06 17:47:50 -0500 |
commit | 9dcc47fe567700eb2f3933fa3cada4f3196bd96d (patch) | |
tree | d14384f97615f157cb804bb45255b1752eb62370 | |
parent | aa815cd6dd17a701bb0725a5c1cd53a90d557550 (diff) | |
parent | aab46252fcd9e6dc32f7fd01c15d578b18528e64 (diff) |
Automated merge with https://bitbucket.org/stinson_linden/viewer-development-havokai
-rwxr-xr-x | package_physicsextensions.sh | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/package_physicsextensions.sh b/package_physicsextensions.sh index 9260dd03ce..5b4c23ecc9 100755 --- a/package_physicsextensions.sh +++ b/package_physicsextensions.sh @@ -34,6 +34,12 @@ do mkdir -p $dstIncludeDir headers="$source/$project/*.h" cp $headers "$dstIncludeDir" + headers="$source/$project/*.inl" + # not all projects have .inl files + files=$(ls $headers 2> /dev/null | wc -l) + if [ "$files" != "0" ] ; then + cp $headers "$dstIncludeDir" + fi done # Copy the license files into place for packaging |