Commit 70d0631e by Ralf Wildenhues Committed by Paolo Bonzini

re PR other/27843 (gcc-4.2-20060527 make install fails on alphaev68-dec-osf5.1b)

2007-02-16  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>

	PR other/27843
	* Makefile.in (SYSTEM_HEADER_DIR): Use single quotes to avoid
	nested double- and backquotes.

From-SVN: r122032
parent 123ddd68
2007-02-16 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
PR other/27843
* Makefile.in (SYSTEM_HEADER_DIR): Use single quotes to avoid
nested double- and backquotes.
2007-02-15 Roger Sayle <roger@eyesopen.com> 2007-02-15 Roger Sayle <roger@eyesopen.com>
PR middle-end/30391 PR middle-end/30391
......
...@@ -386,7 +386,9 @@ CROSS_SYSTEM_HEADER_DIR = @CROSS_SYSTEM_HEADER_DIR@ ...@@ -386,7 +386,9 @@ CROSS_SYSTEM_HEADER_DIR = @CROSS_SYSTEM_HEADER_DIR@
# Purge it of unneccessary internal relative paths # Purge it of unneccessary internal relative paths
# to directories that might not exist yet. # to directories that might not exist yet.
# The sed idiom for this is to repeat the search-and-replace until it doesn't match, using :a ... ta. # The sed idiom for this is to repeat the search-and-replace until it doesn't match, using :a ... ta.
SYSTEM_HEADER_DIR = `echo @SYSTEM_HEADER_DIR@ | sed -e :a -e "s,[^/]*/\.\.\/,," -e ta` # Use single quotes here to avoid nested double- and backquotes, this
# macro is also used in a double-quoted context.
SYSTEM_HEADER_DIR = `echo @SYSTEM_HEADER_DIR@ | sed -e :a -e 's,[^/]*/\.\.\/,,' -e ta`
# Control whether to run fixproto and fixincludes. # Control whether to run fixproto and fixincludes.
STMP_FIXPROTO = @STMP_FIXPROTO@ STMP_FIXPROTO = @STMP_FIXPROTO@
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment