From: Jens Vollinga Date: Wed, 21 Nov 2007 04:38:41 +0000 (+0000) Subject: Synced to HEAD: X-Git-Tag: release_1-4-1~3 X-Git-Url: https://www.ginac.de/ginac.git//ginac.git?a=commitdiff_plain;h=03a43c276dc1b76d4c6777c2e7811945e3818f03;p=ginac.git Synced to HEAD: * Fixed module loading bug (occured if . was not in the library path). --- 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)) {