summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthias Paulmier <matthias.paulmier@etu.u-bordeaux.fr>2018-06-29 17:35:24 +0200
committerMatthias Paulmier <matthias.paulmier@etu.u-bordeaux.fr>2018-06-29 17:37:56 +0200
commit2e028d54b9f13a8df0033e874e8ca4bffbb9d21b (patch)
tree8d1d2cac54775ce975c1521441d754839986d6de
parentf8a9947d39b992633ec2201718daf0f14b692432 (diff)
downloadautomake-2e028d54b9f13a8df0033e874e8ca4bffbb9d21b.tar.gz
LangHandling: Fix missing import
The tests that could help me spot this bug was skipped on my machine. The RULE_AUTOMAKE constant is used in this file so we need the to import the Automake::RuleDef module.
-rw-r--r--lib/Automake/LangHandling.pm1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/Automake/LangHandling.pm b/lib/Automake/LangHandling.pm
index 8d1a8bad7..64779cfb0 100644
--- a/lib/Automake/LangHandling.pm
+++ b/lib/Automake/LangHandling.pm
@@ -23,6 +23,7 @@ use Automake::Location;
use Automake::Options;
use Automake::Requires;
use Automake::Rule;
+use Automake::RuleDef;
use Automake::SilentRules;
use Automake::Utils;
use Automake::Variable;