From aab46252fcd9e6dc32f7fd01c15d578b18528e64 Mon Sep 17 00:00:00 2001 From: "Nyx (Neal Orman)" Date: Mon, 6 Feb 2012 17:47:38 -0500 Subject: 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 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 -- cgit v1.2.3