From aab46252fcd9e6dc32f7fd01c15d578b18528e64 Mon Sep 17 00:00:00 2001
From: "Nyx (Neal Orman)" <nyx@lindenlab.com>
Date: Mon, 6 Feb 2012 17:47:38 -0500
Subject: [PATCH] PATH-194 WIP updating build scripts to include inline files
 as well as headers

---
 package_physicsextensions.sh | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/package_physicsextensions.sh b/package_physicsextensions.sh
index 9260dd03ce1..5b4c23ecc9f 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
-- 
GitLab