configure.ac: We should use $SED and not $(SED) in configure.ac (#343678).
authorPeter Kjellerstedt <pkj@axis.com>
Fri, 9 Jun 2006 18:17:23 +0000 (18:17 +0000)
committerTim-Philipp Müller <tim@centricular.net>
Fri, 9 Jun 2006 18:17:23 +0000 (18:17 +0000)
Original commit message from CVS:
Patch by: Peter Kjellerstedt  <pkj at axis dot com>
* configure.ac:
We should use $SED and not $(SED) in configure.ac (#343678).

ChangeLog
configure.ac

index b6fe5c4bef64e1a6ed126318e9d3aab07cc596ff..31a42bddcd69a4ffeb8056f82951021c308e27ac 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2006-06-09  Tim-Philipp Müller  <tim at centricular dot net>
+
+       Patch by: Peter Kjellerstedt  <pkj at axis dot com>
+
+       * configure.ac:
+         We should use $SED and not $(SED) in configure.ac (#343678).
+
 2006-06-09  Wim Taymans  <wim@fluendo.com>
 
        Patch by: Brian Cameron <brian dot cameron at sun dot com>
index c9eaeb0cf8113834e11db291379d62ed312150f4..24686701d426a7d8f645457b9d6920a39944ed9d 100644 (file)
@@ -125,8 +125,8 @@ AC_CHECK_HEADERS([sys/socket.h], HAVE_SYS_SOCKET_H=yes)
 AM_CONDITIONAL(HAVE_SYS_SOCKET_H, test "x$HAVE_SYS_SOCKET_H" = "xyes")
 
 if test "x$HAVE_SYS_SOCKET_H" != "xyes"; then
-  GST_PLUGINS_SELECTED=`echo $GST_PLUGINS_SELECTED | $(SED) -e s/udp//`
-  GST_PLUGINS_SELECTED=`echo $GST_PLUGINS_SELECTED | $(SED) -e s/rtsp//`
+  GST_PLUGINS_SELECTED=`echo $GST_PLUGINS_SELECTED | $SED -e s/udp//`
+  GST_PLUGINS_SELECTED=`echo $GST_PLUGINS_SELECTED | $SED -e s/rtsp//`
   GST_PLUGINS_NO="\tudp\n$GST_PLUGINS_NO"
   GST_PLUGINS_NO="\trtsp\n$GST_PLUGINS_NO"
 fi