[xiph-commits] r15471 - trunk/theora

giles at svn.xiph.org giles at svn.xiph.org
Thu Oct 30 10:58:24 PDT 2008


Author: giles
Date: 2008-10-30 10:58:24 -0700 (Thu, 30 Oct 2008)
New Revision: 15471

Modified:
   trunk/theora/SConstruct
Log:
Scons build: change the default install prefix to /usr/local

This is less surprising.
Also use os.path.join instead of '+' to build the libdir path.


Modified: trunk/theora/SConstruct
===================================================================
--- trunk/theora/SConstruct	2008-10-30 17:31:57 UTC (rev 15470)
+++ trunk/theora/SConstruct	2008-10-30 17:58:24 UTC (rev 15471)
@@ -202,8 +202,8 @@
 
 ## Install
 
-prefix='/usr'
-lib_dir = prefix + '/lib'
+prefix='/usr/local'
+lib_dir = join(prefix, 'lib')
 env.Alias('install', prefix)
 env.Install(lib_dir, [libtheora_a, libtheora_so])
 env.Install(lib_dir, [libtheoradec_a, libtheoradec_so])



More information about the commits mailing list