From b9e4f4bb4644c57d47045579efdba2424536170e Mon Sep 17 00:00:00 2001 From: Peter Kjellerstedt Date: Fri, 9 Jun 2006 18:17:23 +0000 Subject: configure.ac: We should use $SED and not $(SED) in configure.ac (#343678). Original commit message from CVS: Patch by: Peter Kjellerstedt * configure.ac: We should use $SED and not $(SED) in configure.ac (#343678). --- ChangeLog | 7 +++++++ configure.ac | 4 ++-- 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index b6fe5c4b..31a42bdd 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +2006-06-09 Tim-Philipp Müller + + Patch by: Peter Kjellerstedt + + * configure.ac: + We should use $SED and not $(SED) in configure.ac (#343678). + 2006-06-09 Wim Taymans Patch by: Brian Cameron diff --git a/configure.ac b/configure.ac index c9eaeb0c..24686701 100644 --- a/configure.ac +++ b/configure.ac @@ -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 -- cgit