diff options
author | Sven Gothel <[email protected]> | 2010-11-13 16:59:28 +0100 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2010-11-13 16:59:28 +0100 |
commit | 6c1faf67ac1774cf2e76cf95fe97b499471f6dab (patch) | |
tree | c075978e7f8e5ea4a52f8d4f13fda33d31983b83 /make/scripts | |
parent | dac35658fb0b04e66f2e6cbce175090dcc48bde4 (diff) |
updated runtime-properties.txt doc
Diffstat (limited to 'make/scripts')
-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 |