diff options
author | Karen Arutyunov <karen@codesynthesis.com> | 2016-12-05 17:43:32 +0300 |
---|---|---|
committer | Karen Arutyunov <karen@codesynthesis.com> | 2016-12-05 17:43:32 +0300 |
commit | 50bec623cee6bb324839e04ec6024ca67abdcbde (patch) | |
tree | 835e1800e9464904a3ec327accd3c0a09ebb7242 | |
parent | c12b9dfbbe0b3923a878659d1d02679521200e97 (diff) |
Adapt buildfiles to expansion change
-rw-r--r-- | brep/buildfile | 2 | ||||
-rw-r--r-- | build/root.build | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/brep/buildfile b/brep/buildfile index 7c70ceb..263a49c 100644 --- a/brep/buildfile +++ b/brep/buildfile @@ -33,7 +33,7 @@ if $abi_prerelease else lib{brep}: bin.lib.version = @-$abi_major.$abi_minor -lib{brep}: cxx.export.poptions = -I$out_root -I$src_root +lib{brep}: cxx.export.poptions = "-I$out_root" "-I$src_root" lib{brep}: cxx.export.libs = $int_libs # Install into the brep/ subdirectory of, say, /usr/include/. diff --git a/build/root.build b/build/root.build index 4958390..df7d974 100644 --- a/build/root.build +++ b/build/root.build @@ -11,7 +11,7 @@ ixx{*}: extension = ixx txx{*}: extension = txx cxx{*}: extension = cxx -cxx.poptions =+ -I$out_root -I$src_root +cxx.poptions =+ "-I$out_root" "-I$src_root" # Load the cli module but only if it's available. This way a distribution # that includes pre-generated files can be built without installing cli. |