aboutsummaryrefslogtreecommitdiff
path: root/build2/functions-builtin.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'build2/functions-builtin.cxx')
-rw-r--r--build2/functions-builtin.cxx11
1 files changed, 9 insertions, 2 deletions
diff --git a/build2/functions-builtin.cxx b/build2/functions-builtin.cxx
index d6d9501..03f3592 100644
--- a/build2/functions-builtin.cxx
+++ b/build2/functions-builtin.cxx
@@ -11,13 +11,20 @@ using namespace std;
namespace build2
{
- // Return NULL value if an environment variable is not set.
+ // Return NULL value if an environment variable is not set, untyped value
+ // otherwise.
//
static inline value
getenv (const string& name)
{
const char* v (::getenv (name.c_str ()));
- return v != nullptr ? value (v) : value ();
+
+ if (v == nullptr)
+ return value ();
+
+ names r;
+ r.emplace_back (to_name (v));
+ return value (move (r));
}
void