mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-18 22:36:33 +00:00
configure.ac: We should use $SED and not $(SED) in configure.ac (#343678).
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).
This commit is contained in:
parent
7d666676ed
commit
b9e4f4bb46
2 changed files with 9 additions and 2 deletions
|
@ -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>
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue