From f9129c417ff4165ca21f89f46fbadb048fee6545 Mon Sep 17 00:00:00 2001 From: Christian Rößler Date: Mon, 24 Jun 2013 14:19:26 +0200 Subject: Inserted detection of pango-querymodules-64 in case of 64bit OS --- remote/modules/openbox/openbox.build | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) (limited to 'remote') diff --git a/remote/modules/openbox/openbox.build b/remote/modules/openbox/openbox.build index 51c6beec..f3ce1448 100644 --- a/remote/modules/openbox/openbox.build +++ b/remote/modules/openbox/openbox.build @@ -16,5 +16,15 @@ build() { post_copy() { [ ! -d "$TARGET_BUILD_DIR/etc/pango" ] && mkdir -p "$TARGET_BUILD_DIR/etc/pango" - pango-querymodules > "$TARGET_BUILD_DIR/etc/pango/pango.modules" + + # little Workaround, as under e.g. 64bit Suse the binary is called + # pango-querymodules-64, not pango-querymodules. + which pango-querymodules 2>/dev/null 1>&2 + ERR=$? + if [[ "$ERR" -ne 0 ]]; then + PANGO_QUERYMODULES_ARCH=pango-querymodules-64 + else + PANGO_QUERYMODULES_ARCH=pango-querymodules + fi + $PANGO_QUERYMODULES_ARCH > "$TARGET_BUILD_DIR/etc/pango/pango.modules" } -- cgit v1.2.3-55-g7522