[Bug 720020] New: Missing quotes in gst-error.m4

GStreamer (bugzilla.gnome.org) bugzilla at gnome.org
Fri Dec 6 15:29:17 PST 2013


https://bugzilla.gnome.org/show_bug.cgi?id=720020
  GStreamer | common | git

           Summary: Missing quotes in gst-error.m4
    Classification: Platform
           Product: GStreamer
           Version: git
        OS/Version: All
            Status: UNCONFIRMED
          Severity: critical
          Priority: Normal
         Component: common
        AssignedTo: gstreamer-bugs at lists.freedesktop.org
        ReportedBy: zeranoe at gmail.com
         QAContact: gstreamer-bugs at lists.freedesktop.org
     GNOME version: ---


There are missing quotes in m4/gst-error.m4 that cause a broken configure
script to be written:
  if test "X$flag_ok" = Xyes ; then
    ERROR_CXXFLAGS="$ERROR_CXXFLAGS
    true
  else
    $f"
    true
  fi


This bug is then sent to the Makefile and causes a compile error.

The configure script should read:
  if test "X$flag_ok" = Xyes ; then
    ERROR_CXXFLAGS="$ERROR_CXXFLAGS"
    true
  else
    "$f"
    true
  fi

To achieve this m4/gst-error.m4 needs to be modified with the attached patch.

Let me know if any further information is needed.

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


More information about the gstreamer-bugs mailing list