diff options
| author | Urs Janssen <urs@hq.tin.org> | 2013-02-19 14:41:58 +0100 |
|---|---|---|
| committer | Urs Janssen <urs@hq.tin.org> | 2013-02-19 14:41:58 +0100 |
| commit | 183b2ab14cf223d744f1ee5c32653f2e71852f5d (patch) | |
| tree | 53d2a0633553710eb035e142993d5fe10e0913d3 /libtcc.c | |
| parent | 0ad857c80e174ddcaa8a8ecf6ab6d2cc14e1d84c (diff) | |
| download | tinycc-183b2ab14cf223d744f1ee5c32653f2e71852f5d.tar.gz tinycc-183b2ab14cf223d744f1ee5c32653f2e71852f5d.tar.bz2 | |
don't confuse LD_LIBRARY_PATH (run time) with LIBRARY_PATH (link time)
Diffstat (limited to 'libtcc.c')
| -rw-r--r-- | libtcc.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1954,8 +1954,8 @@ PUB_FUNC void tcc_set_environment(TCCState *s) if(path != NULL) { tcc_add_include_path(s, path); } - path = getenv("LD_LIBRARY_PATH"); + path = getenv("LIBRARY_PATH"); if(path != NULL) { tcc_add_library_path(s, path); } -}
\ No newline at end of file +} |
