summaryrefslogtreecommitdiff
path: root/pwx/check_tree.pl
diff options
context:
space:
mode:
authorSven Eden <yamakuzure@gmx.net>2018-03-09 07:32:56 +0100
committerSven Eden <yamakuzure@gmx.net>2018-03-09 07:32:56 +0100
commit6a24b8e6be5393c5ad37a67d200ce60d19f95903 (patch)
treeaef8c934296cebf3b89f1d57d26ce17dfcf5ed96 /pwx/check_tree.pl
parentc84557db2a38ea962122d58945b56a2cedff188b (diff)
check_tree.pl : Add handling of .gperf files.
Diffstat (limited to 'pwx/check_tree.pl')
-rwxr-xr-xpwx/check_tree.pl3
1 files changed, 2 insertions, 1 deletions
diff --git a/pwx/check_tree.pl b/pwx/check_tree.pl
index 1b323b0d2..e0d6c7ad1 100755
--- a/pwx/check_tree.pl
+++ b/pwx/check_tree.pl
@@ -12,6 +12,7 @@
# 0.8.2 2018-03-06 sed, PrydeWorX Added checks for elogind_*() function call removals.
# 0.8.3 2018-03-08 sed, PrydeWorX Handle systemd-logind <=> elogind renames. Do not allow moving of
# commented out includes under out elogind block.
+# 0.8.4 2018-03-09 sed, PrydeWorX Added handling of .gperf files.
#
# ========================
# === Little TODO list ===
@@ -20,7 +21,6 @@
# python tools and man sources always generate useless patches. Real patches
# are in danger of getting overlooked.
# - Add handling of the *.sym files.
-# - Find a masking solution for login/logind-gperf.gperf
#
use strict;
use warnings;
@@ -1153,6 +1153,7 @@ sub diff_hFile {
# Shell and meson files must be prepared. See prepare_meson()
( $hFile{source} =~ m/meson/ or
+ $hFile{source} =~ m/\.gperf$/ or
$hFile{source} =~ m/\.in$/ or
$hFile{source} =~ m/\.pl$/ or
$hFile{source} =~ m/\.sh$/ ) and prepare_shell;