From 03a43c276dc1b76d4c6777c2e7811945e3818f03 Mon Sep 17 00:00:00 2001 From: Jens Vollinga Date: Wed, 21 Nov 2007 04:38:41 +0000 Subject: [PATCH] Synced to HEAD: * Fixed module loading bug (occured if . was not in the library path). --- ginac/excompiler.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ginac/excompiler.cpp b/ginac/excompiler.cpp index 4cf28416..a148f38f 100644 --- a/ginac/excompiler.cpp +++ b/ginac/excompiler.cpp @@ -110,7 +110,7 @@ public: { if (filename.empty()) { // fill filename with unique random word - const char* filename_pattern = "GiNaCXXXXXX"; + const char* filename_pattern = "./GiNaCXXXXXX"; char* new_filename = new char[strlen(filename_pattern)+1]; strcpy(new_filename, filename_pattern); if (!mktemp(new_filename)) { -- 2.49.0