summaryrefslogtreecommitdiff
path: root/configure
diff options
context:
space:
mode:
authorMichael Kostylev <michael.kostylev@gmail.com>2009-10-31 16:33:38 +0000
committerMåns Rullgård <mans@mansr.com>2009-10-31 16:33:38 +0000
commitfaa374b72cdda0dd6ab9eab9116d02fabc147644 (patch)
tree87fcff1a702537e343c71c69b863d181236360a7 /configure
parent06454877017b0ee7b77c749efc09b77b2d14fa05 (diff)
configure: remove extra backslashes from suncc DEPEND_CMD
Patch by Michael Kostylev <michael kostylev gmail> Originally committed as revision 20428 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure2
1 files changed, 1 insertions, 1 deletions
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