summaryrefslogtreecommitdiff
path: root/libs/ardour/globals.cc
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2019-07-26 16:44:29 +0200
committerRobin Gareus <robin@gareus.org>2019-07-26 16:44:29 +0200
commit78fc6d66516861e4ff0b98671c04aa182f5a5b6a (patch)
tree5bdb140221b375fd9ced04dd6b99be6f846af796 /libs/ardour/globals.cc
parentb759fb883ea17e87ec533e866916416fa44d9c9e (diff)
Prefix all env variable with "ARDOUR_"
In particular "CONCURRENCY" can be problematic. But in general it's good practice to use a namespace prefix for app-specifics.
Diffstat (limited to 'libs/ardour/globals.cc')
-rw-r--r--libs/ardour/globals.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/ardour/globals.cc b/libs/ardour/globals.cc
index e42c0d5ca9..7f7d9f582b 100644
--- a/libs/ardour/globals.cc
+++ b/libs/ardour/globals.cc
@@ -439,7 +439,7 @@ ARDOUR::init (bool use_windows_vst, bool try_optimization, const char* localedir
}
#ifndef NDEBUG
- if (getenv("LUA_METATABLES")) {
+ if (getenv("ARDOUR_LUA_METATABLES")) {
luabridge::Security::setHideMetatables (false);
}
#endif