[Webkit-unassigned] [Bug 117796] New: [GTK] remove bashism from configure

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Wed Jun 19 06:26:07 PDT 2013


https://bugs.webkit.org/show_bug.cgi?id=117796

           Summary: [GTK] remove bashism from configure
           Product: WebKit
           Version: 420+
          Platform: All
        OS/Version: Other
            Status: UNCONFIRMED
          Severity: Trivial
          Priority: P3
         Component: WebKit Gtk
        AssignedTo: webkit-unassigned at lists.webkit.org
        ReportedBy: ajacoutot at gnome.org


Hi.

Would it be possible to use something like this in the configure script:

-    FREETYPE_CFLAGS+=" $HARFBUZZ_ICU_CFLAGS"
-    FREETYPE_LIBS+=" $HARFBUZZ_ICU_LIBS"
+    FREETYPE_CFLAGS="$FREETYPE_CFLAGS $HARFBUZZ_ICU_CFLAGS"
+    FREETYPE_LIBS="$FREETYPE_LIBS $HARFBUZZ_ICU_LIBS"

On OpenBSD (and other BSDs for that matter), we don't use bash so the current construct breaks.
Using FREETYPE_CFLAGS="$FREETYPE_CFLAGS ..." fixes it for me.

Thanks.

-- 
Configure bugmail: https://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.



More information about the webkit-unassigned mailing list