diff options
Diffstat (limited to 'make/scripts/make-runtime-properties.sh')
-rw-r--r-- | make/scripts/make-runtime-properties.sh | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/make/scripts/make-runtime-properties.sh b/make/scripts/make-runtime-properties.sh index f546a93ee..a6075dd85 100644 --- a/make/scripts/make-runtime-properties.sh +++ b/make/scripts/make-runtime-properties.sh @@ -18,12 +18,15 @@ function cleanup() { sed -e 's/\".*$//g' -i $tfile sed -e "s/^/$domain/g" -i $tfile - sort -u $tfile > $ffile + sort -u $tfile >> $ffile rm -f $tfile } -grep -hRI "Debug\.debug" ../../gluegen/src/java/com/jogamp | sort -u > $dest/gluegen-rt.debug.tmp1.txt +grep -hRI "Debug\.debug" ../../gluegen/src/java/com/jogamp | sort -u > $dest/gluegen-rt.debug.tmp1.txt +grep -hRI "System.getProperty(\"jogamp" ../../gluegen/src/java/com/jogamp | sort -u > $dest/gluegen-rt.debug.tmp2.txt cleanup $dest/gluegen-rt.debug.tmp1.txt $dest/gluegen-rt.debug.txt jogamp.debug. +cleanup $dest/gluegen-rt.debug.tmp2.txt $dest/gluegen-rt.debug.txt + grep -hRI -e "Debug\.isPropertyDefined" -e "Debug\.get" ../../gluegen/src/java/com/jogamp | sort -u > $dest/gluegen-rt.debug.ipd.tmp1.txt cleanup $dest/gluegen-rt.debug.ipd.tmp1.txt $dest/gluegen-rt.ipd.debug.txt |