commit | ef67ad05cb2a23e555cfbfc67faf435677fbcf73 | [log] [tgz] |
---|---|---|
author | José Fonseca <jfonseca@vmware.com> | Thu Feb 04 09:21:00 2010 +0000 |
committer | José Fonseca <jfonseca@vmware.com> | Thu Feb 04 09:23:30 2010 +0000 |
tree | 1f7941492c144a691beabfab483af77fde6aeab1 | |
parent | 7713069ae3ec24404d944d91614e4448b7c1a2c6 [diff] [blame] |
scons: Use only the shared object name when linking progs. Otherwise the whole path gets baked into the executable.
diff --git a/progs/SConscript b/progs/SConscript index 66a1745..2ec95a2 100644 --- a/progs/SConscript +++ b/progs/SConscript
@@ -23,7 +23,8 @@ progs_env.Prepend(LIBS = ['GLU', 'GL']) # Glut - progs_env.Prepend(LIBS = [glut]) + progs_env.Prepend(LIBPATH = [glut.dir]) + progs_env.Prepend(LIBS = [glut.name]) # GLEW progs_env.Prepend(LIBS = [glew])