From: Karel Zak Date: Thu, 19 Mar 2026 10:30:07 +0000 (+0100) Subject: tools: (compare-buildsys) suppress common lines in diff output X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=49a7e83c50a2025a08985117c0ca2c39fee8332b;p=thirdparty%2Futil-linux.git tools: (compare-buildsys) suppress common lines in diff output Signed-off-by: Karel Zak --- diff --git a/tools/compare-buildsys.sh b/tools/compare-buildsys.sh index e88cbd58f..a26083bcd 100755 --- a/tools/compare-buildsys.sh +++ b/tools/compare-buildsys.sh @@ -30,6 +30,6 @@ grep "$GREP_PATTERN" $MESON_CONFIG_H | sort >> $TMPFILE_MESON echo "===AUTOCONF===" > $TMPFILE_AUTOCONF grep "$GREP_PATTERN" $AUTOCONF_CONFIG_H | sort >> $TMPFILE_AUTOCONF -diff --side-by-side $TMPFILE_AUTOCONF $TMPFILE_MESON +diff --side-by-side --suppress-common-lines $TMPFILE_AUTOCONF $TMPFILE_MESON rm -rf $TMPFILE_MESON $TMPFILE_AUTOCONF