From faa374b72cdda0dd6ab9eab9116d02fabc147644 Mon Sep 17 00:00:00 2001 From: Michael Kostylev Date: Sat, 31 Oct 2009 16:33:38 +0000 Subject: [PATCH] configure: remove extra backslashes from suncc DEPEND_CMD Patch by Michael Kostylev Originally committed as revision 20428 to svn://svn.ffmpeg.org/ffmpeg/trunk --- configure | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure b/configure index 96be39a64b..d534360d2f 100755 --- a/configure +++ b/configure @@ -1617,7 +1617,7 @@ elif $cc -v 2>&1 | grep -q clang; then elif $cc -V 2>&1 | grep -q Sun; then cc_type=suncc cc_version="AV_STRINGIFY(__SUNPRO_C)" - DEPEND_CMD='$(DEPCC) $(DEPFLAGS) $< | sed -e "1s,^.*: ,$@: ," -e "\$$!s,\$$, \\\\\\," -e "1!s,^.*: , ," > $(@:.o=.d)' + DEPEND_CMD='$(DEPCC) $(DEPFLAGS) $< | sed -e "1s,^.*: ,$@: ," -e "\$$!s,\$$, \\\," -e "1!s,^.*: , ," > $(@:.o=.d)' DEPFLAGS='$(CPPFLAGS) $(CFLAGS) -xM1' fi