From 74090bb5568f42470b41d8e292aeb463896c7c05 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Jan=20R=C4=99korajski?= Date: Fri, 23 Mar 2012 23:05:09 +0000 Subject: [PATCH] - don't use bash constructs in makefile Changed files: no-bashizm.patch -> 1.1 --- no-bashizm.patch | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 no-bashizm.patch diff --git a/no-bashizm.patch b/no-bashizm.patch new file mode 100644 index 0000000..752c0a1 --- /dev/null +++ b/no-bashizm.patch @@ -0,0 +1,11 @@ +--- tigervnc-1.2.0/unix/xserver/hw/vnc/Makefile.am~ 2012-03-23 13:48:14.821937463 +0100 ++++ tigervnc-1.2.0/unix/xserver/hw/vnc/Makefile.am 2012-03-23 13:53:47.718619148 +0100 +@@ -68,7 +68,7 @@ + + pixman.h: + for i in ${XSERVERLIBS_CFLAGS}; do \ +- if [[ "$$i" =~ "pixman" ]]; then \ ++ if [[ "$$i" = *pixman* ]]; then \ + PIXMANINCDIR=`echo $$i | sed s/-I//g`; \ + fi; \ + done; \ -- 2.44.0