gnash-commit
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Gnash-commit] /srv/bzr/gnash/trunk r10231: Use -o instead of '|| test'


From: Russell Nelson
Subject: [Gnash-commit] /srv/bzr/gnash/trunk r10231: Use -o instead of '|| test' for portability
Date: Wed, 05 Nov 2008 20:13:15 -0500
User-agent: Bazaar (1.5)

------------------------------------------------------------
revno: 10231
committer: Russell Nelson <address@hidden>
branch nick: trunk
timestamp: Wed 2008-11-05 20:13:15 -0500
message:
  Use -o instead of '|| test'  for portability
modified:
  configure.ac
=== modified file 'configure.ac'
--- a/configure.ac      2008-11-05 23:27:45 +0000
+++ b/configure.ac      2008-11-06 01:13:15 +0000
@@ -1750,7 +1750,7 @@
     AC_DEFINE([HAVE_GST_INSTALL_PLUGINS_SUPPORTED], [], [GStreamer provides 
the gst_install_plugins_supported function]),
     has_gst_install_plugins_supported='no')
   CFLAGS=$save_cflags
-  if test x$has_gst_install_plugins_async = xno || test 
x$has_gst_install_plugins_supported = xno; then
+  if test x$has_gst_install_plugins_async = xno -o 
x$has_gst_install_plugins_supported = xno; then
     has_modern_gstpbutils='no'
     AC_MSG_RESULT([no {GSTREAMER_CFLAGS=$GSTREAMER_CFLAGS}])
   else


reply via email to

[Prev in Thread] Current Thread [Next in Thread]