summaryrefslogtreecommitdiff
path: root/tools/test-build
diff options
context:
space:
mode:
authorPeter Powell <petpow@saberuk.com>2016-02-26 13:12:09 +0000
committerPeter Powell <petpow@saberuk.com>2016-04-04 13:20:21 +0100
commit30bd7bb39fb55a4b6b3075a1f8a7df47bc0e261f (patch)
tree23119a89eb97f752cb68fd6e3bad69aa1000663d /tools/test-build
parent932748db6dd2a7225c9f12bc34339fcb2f37c319 (diff)
Rename PURE_STATIC to INSPIRCD_STATIC.
Diffstat (limited to 'tools/test-build')
-rwxr-xr-xtools/test-build4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/test-build b/tools/test-build
index b0eb255c0..146880fe6 100755
--- a/tools/test-build
+++ b/tools/test-build
@@ -56,12 +56,12 @@ foreach my $compiler (@compilers) {
say "Failed to configure using the $compiler compiler and the $socketengine socket engine!";
exit 1;
}
- $ENV{PURE_STATIC} = 1;
+ $ENV{INSPIRCD_STATIC} = 1;
if (system 'make', '-j'.get_cpu_count, 'install') {
say "Failed to compile with static modules using the $compiler compiler and the $socketengine socket engine!";
exit 1;
}
- delete $ENV{PURE_STATIC};
+ delete $ENV{INSPIRCD_STATIC};
if (system 'make', '-j'.get_cpu_count, 'install') {
say "Failed to compile with dynamic modules using the $compiler compiler and the $socketengine socket engine!";
exit 1;