After an evaluation, GNOME has moved from Bugzilla to GitLab. Learn more about GitLab.
No new issues can be reported in GNOME Bugzilla anymore.
To report an issue in a GNOME project, go to GNOME GitLab.
Do not go to GNOME Gitlab for: Bluefish, Doxygen, GnuCash, GStreamer, java-gnome, LDTP, NetworkManager, Tomboy.
Bug 139034 - Non-standard test(1) operator used in configure script
Non-standard test(1) operator used in configure script
Status: RESOLVED FIXED
Product: GStreamer
Classification: Platform
Component: gst-plugins
git master
Other other
: Normal normal
: 0.8.1
Assigned To: GStreamer Maintainers
GStreamer Maintainers
Depends on:
Blocks:
 
 
Reported: 2004-04-04 14:25 UTC by Julio Merino
Modified: 2004-12-22 21:47 UTC
See Also:
GNOME target: ---
GNOME version: 2.5/2.6


Attachments
Sample patch (883 bytes, patch)
2004-04-04 14:26 UTC, Julio Merino
none Details | Review

Description Julio Merino 2004-04-04 14:25:29 UTC
The configure script of gst-plugins has two calls to test(1) with the '=='
operator in them.  This is only recognized by the GNU test utility (it's an
extensions), but has nothing to do with the POSIX specification.  This causes
problems in NetBSD, for example, as the native test(1) utility doesn't recognize
this operator.  Instead, one must use '='.

The fix is trivial.  Patch attached.
Comment 1 Julio Merino 2004-04-04 14:26:08 UTC
Created attachment 26312 [details] [review]
Sample patch
Comment 2 Benjamin Otte (Company) 2004-04-04 23:38:23 UTC
fixed