We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
meld
1 parent 4e2e790 commit cee3652Copy full SHA for cee3652
tools/doxygen_groups.sh
@@ -9,9 +9,9 @@
9
# Usage, from top level plasma directory:
10
# ./tools/doxygen_groups.sh
11
#
12
-# On MacOS, uses opendiff; otherwise uses diff.
+# Uses meld if available, else diff.
13
14
-egrep -h '@ingroup' */*.{h,c} | \
+git grep -h '@ingroup' | \
15
perl -pe 's/^ *\*//; s@^ *///@@; s/^ +//; s/\@ingroup/\@group/;' | \
16
sort --unique > ingroup
17
@@ -20,9 +20,9 @@ egrep -h '^ *@defgroup' docs/doxygen/groups.dox | \
20
perl -pe 's/^ *\@defgroup +(\w+).*/\@group $1/;' | \
21
sort > defgroup
22
23
-which opendiff > /dev/null
+which meld > /dev/null
24
if [ $? == 0 ]; then
25
- opendiff ingroup defgroup
+ meld ingroup defgroup
26
else
27
diff ingroup defgroup
28
fi
0 commit comments