GNOME Bugzilla – Bug 139034
Non-standard test(1) operator used in configure script
Last modified: 2004-12-22 21:47:04 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.
Created attachment 26312 [details] [review] Sample patch
fixed