summaryrefslogtreecommitdiffstats
path: root/third_party/instrumented_libraries/instrumented_libraries.gyp
diff options
context:
space:
mode:
authorearthdok <earthdok@chromium.org>2015-03-17 09:17:20 -0700
committerCommit bot <commit-bot@chromium.org>2015-03-17 16:18:02 +0000
commitd5f741c56fa985c38b7361ea5bc66dcb93c1f52b (patch)
treed8178fc5631e8af25471230a8de5e439a15ba98e /third_party/instrumented_libraries/instrumented_libraries.gyp
parentd0ea87fe25a4e769ff2aceea68563fc119b27c14 (diff)
downloadchromium_src-d5f741c56fa985c38b7361ea5bc66dcb93c1f52b.zip
chromium_src-d5f741c56fa985c38b7361ea5bc66dcb93c1f52b.tar.gz
chromium_src-d5f741c56fa985c38b7361ea5bc66dcb93c1f52b.tar.bz2
Instrumented libraries: pass correct configure flags to dbus.
Should fix the "D-Bus library appears to be incorrectly set up; failed to read machine uuid" messages. BUG=467901 TBR=glider@chromium.org NOTRY=true Review URL: https://codereview.chromium.org/1008873004 Cr-Commit-Position: refs/heads/master@{#320930}
Diffstat (limited to 'third_party/instrumented_libraries/instrumented_libraries.gyp')
-rw-r--r--third_party/instrumented_libraries/instrumented_libraries.gyp15
1 files changed, 14 insertions, 1 deletions
diff --git a/third_party/instrumented_libraries/instrumented_libraries.gyp b/third_party/instrumented_libraries/instrumented_libraries.gyp
index 0153c1a..5c5c50c 100644
--- a/third_party/instrumented_libraries/instrumented_libraries.gyp
+++ b/third_party/instrumented_libraries/instrumented_libraries.gyp
@@ -201,7 +201,20 @@
{
'package_name': 'libdbus-1-3',
'dependencies=': [],
- 'extra_configure_flags': ['--disable-static'],
+ 'extra_configure_flags': [
+ '--disable-static',
+ # From debian/rules.
+ '--disable-libaudit',
+ '--enable-apparmor',
+ '--enable-systemd',
+ '--libexecdir=/lib/dbus-1.0',
+ '--with-systemdsystemunitdir=/lib/systemd/system',
+ '--disable-tests',
+ '--exec-prefix=/',
+ # From dh_auto_configure.
+ '--prefix=/usr',
+ '--localstatedir=/var',
+ ],
'includes': ['standard_instrumented_package_target.gypi'],
},
{