summaryrefslogtreecommitdiff
path: root/SConstruct
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2007-01-03 20:00:57 +0000
committerPaul Davis <paul@linuxaudiosystems.com>2007-01-03 20:00:57 +0000
commitebbc8b3b6a6d77f705698aff36455c61ee07bb66 (patch)
treeac0c6276ba2c54f14a18d1dc50c051123c011731 /SConstruct
parentfd42bffae71ae2bb521ace2145f238a76d9cf764 (diff)
do proper install on x86_64 system, remove stupid debuggig code from panner, handle port registration error with its own error message
git-svn-id: svn://localhost/ardour2/trunk@1264 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'SConstruct')
-rw-r--r--SConstruct7
1 files changed, 7 insertions, 0 deletions
diff --git a/SConstruct b/SConstruct
index f32b5a3e4b..b9079e34e7 100644
--- a/SConstruct
+++ b/SConstruct
@@ -631,6 +631,13 @@ if env['FPU_OPTIMIZATION']:
print "\nWarning: you are building Ardour with SSE support even though your system does not support these instructions. (This may not be an error, especially if you are a package maintainer)"
# end optimization section
+# handle x86/x86_64 libdir properly
+
+if env['DIST_TARGET'] == 'x86_64':
+ env['LIBDIR']='lib64'
+else:
+ env['LIBDIR']='lib'
+
#
# save off guessed arch element in an env
#