diff options
author | Gabriel Burt <gabriel.burt@gmail.com> | 2011-03-29 16:14:33 -0500 |
---|---|---|
committer | Gabriel Burt <gabriel.burt@gmail.com> | 2011-03-29 16:14:33 -0500 |
commit | 1118a66d20792d176b8c72c939205b8e4ec0700c (patch) | |
tree | dab335d77949820fb7e9acd6b1da75c835661b88 | |
parent | d7149443e0a087eab608a76c9f14bf73a83542a5 (diff) |
build: Set XLIB_SKIP_ARGB_VISUALS=1 in 'make run'
-rw-r--r-- | Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am index 228fad96e..8425b39f9 100644 --- a/Makefile.am +++ b/Makefile.am @@ -59,7 +59,7 @@ check-bootstrap-env: fi run: check-bootstrap-env $(MO_FILES) - (cd bin; $(MONO) --debug $(BANSHEE_DEV_MONO_OPTIONS) Nereid.exe --debug --uninstalled $(BANSHEE_DEV_OPTIONS)) + (cd bin; XLIB_SKIP_ARGB_VISUALS=1 $(MONO) --debug $(BANSHEE_DEV_MONO_OPTIONS) Nereid.exe --debug --uninstalled $(BANSHEE_DEV_OPTIONS)) run-profiled: check-bootstrap-env $(MO_FILES) (cd bin; LD_LIBRARY_PATH=$(LD_LIBRARY_PATH):/usr/local/lib $(MONO) --debug $(BANSHEE_DEV_MONO_OPTIONS) --profile=log:time=fast,calls,noalloc,maxframes=5 Nereid.exe --uninstalled $(BANSHEE_DEV_OPTIONS)) |