Skip to content
Snippets Groups Projects
Commit e2a5d85e authored by Vivek Das Mohapatra's avatar Vivek Das Mohapatra
Browse files

Let CAPSULE_PREFIX environment variable override the default "/host"

parent efc6b559
No related branches found
No related tags found
1 merge request!311Build capsule-capture-libs from a bundled copy of libcapsule
...@@ -137,7 +137,9 @@ cat - <<EOF ...@@ -137,7 +137,9 @@ cat - <<EOF
}; };
symbol_ns = LM_ID_NEWLM; symbol_ns = LM_ID_NEWLM;
prefix = "/host"; prefix = secure_getenv( "CAPSULE_PREFIX" );
if( !prefix )
prefix = "/host";
capsule_init(); capsule_init();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment