Fixing minor portability issues

This commit is contained in:
Paulo Moura
2010-09-25 03:46:20 +01:00
parent d5879430da
commit 8cf9568c8b
13 changed files with 79 additions and 58 deletions

View File

@@ -216,12 +216,13 @@
% load library modules
:- use_module(library(system)).
:- use_module(library(system), [exec/3, file_exists/1]).
% load our own modules
:- use_module(gflags, _, [flag_get/2]).
:- dynamic [problog_path/1, problog_working_path/1].
:- dynamic(problog_path/1).
:- dynamic(problog_working_path/1).
set_problog_path(Path):-
retractall(problog_path(_)),