summaryrefslogtreecommitdiffstats
path: root/www/webkit-gtk3/files/patch-configure
blob: c326f9b8240ef40b36efce1271a9265f7d88a94d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
--- configure.orig  2013-06-11 12:47:07.000000000 +0200
+++ configure   2013-06-22 10:50:41.000000000 +0200
@@ -17508,8 +17508,8 @@
 .SECONDARY: $(gsettings_SCHEMAS)
 
 gsettings__base_list = \
-  sed "$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g" | \
-  sed "$$!N;$$!N;$$!N;$$!N;s/\n/ /g"
+  sed '\''$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g'\'' | \
+  sed '\''$$!N;$$!N;$$!N;$$!N;s/\n/ /g'\''
 
 install-gsettings-schemas: $(gsettings_SCHEMAS:.xml=.valid) $(gsettings__enum_file)
    @$(NORMAL_INSTALL)
@@ -17518,7 +17518,7 @@
    for p in $$list; do \
      if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
      echo "$$d$$p"; \
-   done | $(gsettings__base_list) | \
+   done | \
    while read files; do \
      echo " $(INSTALL_DATA) $$files '\''$(DESTDIR)$(gsettingsschemadir)'\''"; \
      $(INSTALL_DATA) $$files "$(DESTDIR)$(gsettingsschemadir)" || exit $$?; \
@@ -19538,8 +19538,8 @@
 $as_echo "yes" >&6; }
 
 fi
-    FREETYPE_CFLAGS+=" $HARFBUZZ_ICU_CFLAGS"
-    FREETYPE_LIBS+=" $HARFBUZZ_ICU_LIBS"
+    FREETYPE_CFLAGS="${FREETYPE_CFLAGS} $HARFBUZZ_ICU_CFLAGS"
+    FREETYPE_LIBS="${FREETYPE_LIBS} $HARFBUZZ_ICU_LIBS"
 fi
 
 
@@ -20144,7 +20144,7 @@
 
 fi
 
-acceleration_backend_description=$with_acceleration_backend
+acceleration_backend_description=${with_acceleration_backend}
 if test "$with_acceleration_backend" = "clutter"; then
 
 pkg_failed=no
@@ -20341,18 +20341,18 @@
 
 if test "$with_acceleration_backend" = "opengl"; then
     if test "$enable_gles2" = "yes"; then
-        acceleration_backend_description+= "(gles2"
+        acceleration_backend_description="${acceleration_backend_description} (gles2"
         OPENGL_LIBS="-lGLESv2"
     else
-        acceleration_backend_description+="(gl"
+        acceleration_backend_description="${acceleration_backend_description} (gl"
         OPENGL_LIBS="-lGL"
     fi
     if test "$enable_egl" = "yes"; then
-        acceleration_backend_description+=", egl"
+        acceleration_backend_description="${acceleration_backend_description}, egl"
         OPENGL_LIBS+=" -lEGL"
     fi
     if test "$enable_glx" = "yes"; then
-        acceleration_backend_description+=", glx"
+        acceleration_backend_description="${acceleration_backend_description}, glx"
     fi
 
     # Check whether dlopen() is in the core libc like on FreeBSD, or in a separate
@@ -20405,8 +20405,8 @@
 
 
 
-    OPENGL_LIBS+=" $DLOPEN_LIBS"
-    acceleration_backend_description+=")"
+    OPENGL_LIBS="${OPENGL_LIBS} $DLOPEN_LIBS"
+    acceleration_backend_description="${acceleration_backend_description})"
 fi