summaryrefslogtreecommitdiff
path: root/mcon/pl
diff options
context:
space:
mode:
authorRaphael Manfredi <Raphael_Manfredi@pobox.com>2017-05-14 09:14:17 +0200
committerRaphael Manfredi <Raphael_Manfredi@pobox.com>2017-05-14 09:14:17 +0200
commit769f306c6c3fb3d5f39a1666932b71452879bdbc (patch)
tree750da0bae1b1a8fe1f69b9e72d46b988fd824a8e /mcon/pl
parentd527baa7163e2a896b69c9e7eff90607cc145059 (diff)
Further enhanced ?MAKE: checks for pick to watch for %<.
The last argument of the pick command is the target, usually the current unit name, or an explicit relative path. If it is the unit name, then it is better represented by using the %< macro in case the unit file is copied or renamed later.
Diffstat (limited to 'mcon/pl')
-rw-r--r--mcon/pl/lint.pl2
1 files changed, 2 insertions, 0 deletions
diff --git a/mcon/pl/lint.pl b/mcon/pl/lint.pl
index 3762e3d..5a70598 100644
--- a/mcon/pl/lint.pl
+++ b/mcon/pl/lint.pl
@@ -165,6 +165,8 @@ sub p_make_command {
return if $target =~ m|^\./|;
warn "$where: weird fourth argument '$target' to pick.\n"
unless $target =~ /^\w+$/;
+ warn "$where: fourth pick argument should probably be the %< macro.\n"
+ unless $target eq $unit;
}
# Process the ?MAKE: line