From 99a7feb85c7f156b9b920f67e25d0045bcb02677 Mon Sep 17 00:00:00 2001 From: Achim Gsell Date: Thu, 17 Sep 2015 11:21:45 +0200 Subject: [PATCH] vtk/build: - add missing namespace prefix to std::append_path() call --- scripts/Compiler/vtk/build | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/Compiler/vtk/build b/scripts/Compiler/vtk/build index 36ad503..108e9d7 100755 --- a/scripts/Compiler/vtk/build +++ b/scripts/Compiler/vtk/build @@ -12,8 +12,8 @@ case ${OS} in Darwin ) pmodules.pre_configure() { # for the time being: on Mac OS X we need GL/gl.h from MacPorts: - append_path C_INLCUDE_PATH '/opt/local/include' - append_path CPLUS_INCLUDE_PATH '/opt/local/include' + std::append_path C_INLCUDE_PATH '/opt/local/include' + std::append_path CPLUS_INCLUDE_PATH '/opt/local/include' } ;; esac