diff options
author | Peter Powell <petpow@saberuk.com> | 2014-10-01 19:52:29 +0100 |
---|---|---|
committer | Peter Powell <petpow@saberuk.com> | 2014-12-07 22:36:43 +0000 |
commit | 7404ba8b66083c2fbb19c638da85c252551792a2 (patch) | |
tree | 622b5f0fd7fdf60885fd2d82b99795b101f55750 /tools | |
parent | 541a66de7adbfe57dd4d3e998e8cc0db5585a266 (diff) |
Move common code to make::common from make::utilities.
The other code in that file will be removed very soon so it has
been left alone to avoid merge conflicts.
This will help prevent insp20 merge conflicts in the future.
Diffstat (limited to 'tools')
-rwxr-xr-x | tools/test-build | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/test-build b/tools/test-build index 7f1bf68cd..85d63ccbe 100755 --- a/tools/test-build +++ b/tools/test-build @@ -29,8 +29,8 @@ BEGIN { use strict; use warnings FATAL => qw(all); +use make::common; use make::configure; -use make::utilities; $ENV{D} = $ENV{V} = 1; |