diff options
author | Erich Eckner <git@eckner.net> | 2015-12-09 14:24:45 +0100 |
---|---|---|
committer | Erich Eckner <git@eckner.net> | 2015-12-09 14:24:45 +0100 |
commit | 4e16f186059941a781b758c5b75ae894264acae4 (patch) | |
tree | b6cf66c15d6465377a335aa9e6d35bcf42ce4702 | |
parent | 79e32225e3ccfdb0b458bda3a1afbec615832e98 (diff) | |
download | units-4e16f186059941a781b758c5b75ae894264acae4.tar.xz |
Ausgabe, wenn wegen Compilerschalter neu erzeugt wird
-rw-r--r-- | compilerswitchupdateunit.pas | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/compilerswitchupdateunit.pas b/compilerswitchupdateunit.pas index ab11a9c..0b2814b 100644 --- a/compilerswitchupdateunit.pas +++ b/compilerswitchupdateunit.pas @@ -30,7 +30,9 @@ initialization ciCompiletime.free; ciRuntime.free; - if update then + if update then begin + writeln(stderr,'Recompiling due to new compiler switches.'); refreshExecutable(extractFilePath(paramstr(0))); + end; end. |