diff options
author | Joey Hess <joey@kitenet.net> | 2010-05-04 18:41:55 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2010-05-04 18:41:55 -0400 |
commit | 76a5dbe7cbc4e1f016752e4aa1445052c0b4a3ef (patch) | |
tree | 154c63dd621d15ef2cfbee66679ab0b5356f1a47 /IkiWiki | |
parent | ab575a4b6985d38969069757bb374aa8f1013019 (diff) | |
download | ikiwiki-76a5dbe7cbc4e1f016752e4aa1445052c0b4a3ef.tar ikiwiki-76a5dbe7cbc4e1f016752e4aa1445052c0b4a3ef.tar.gz |
note that tcc workaround is for bug fixed in tcc now
Diffstat (limited to 'IkiWiki')
-rw-r--r-- | IkiWiki/Wrapper.pm | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/IkiWiki/Wrapper.pm b/IkiWiki/Wrapper.pm index 3f3e63ca6..73f0896e8 100644 --- a/IkiWiki/Wrapper.pm +++ b/IkiWiki/Wrapper.pm @@ -123,6 +123,7 @@ $envsave newenviron[i++]="WRAPPED_OPTIONS=$configstring"; #ifdef __TINYC__ + /* old tcc versions do not support modifying environ directly */ if (clearenv() != 0) { perror("clearenv"); exit(1); |