From 0eee5788df79c383a4bd1a6071129a490f47b905 Mon Sep 17 00:00:00 2001 From: Emmanuele Bassi Date: Tue, 22 Mar 2011 17:18:07 +0000 Subject: [PATCH] build: Remove bash-isms --- configure.ac | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/configure.ac b/configure.ac index f7b469686..fd3eafc28 100644 --- a/configure.ac +++ b/configure.ac @@ -1125,12 +1125,12 @@ AS_CASE([$enable_maintainer_flags], ) # strip leading spaces -MAINTAINER_CFLAGS=${MAINTAINER_CFLAGS/# } +MAINTAINER_CFLAGS=${MAINTAINER_CFLAGS#* } AC_SUBST(MAINTAINER_CFLAGS) dnl === Dependencies, compiler flags and linker libraries ===================== # strip leading space -BACKEND_PC_FILES=${BACKEND_PC_FILES/# } +BACKEND_PC_FILES=${BACKEND_PC_FILES/#* } CLUTTER_REQUIRES="$CLUTTER_BASE_PC_FILES $IMAGE_PC_FILES $BACKEND_PC_FILES" PKG_CHECK_MODULES(CLUTTER_DEPS, [$CLUTTER_REQUIRES])