Commit ae7a8ebc by Ben Elliston Committed by Ben Elliston

Committed with RM approval this time.

	PR other/22232
	* fixproto: Escape "." in sed expression that strips leading "./".

From-SVN: r131809
parent 3fe82414
2008-01-25 Ben Elliston <bje@au.ibm.com>
PR other/22232
* fixproto: Escape "." in sed expression that strips leading "./".
2008-01-24 H.J. Lu <hongjiu.lu@intel.com> 2008-01-24 H.J. Lu <hongjiu.lu@intel.com>
PR driver/34904 PR driver/34904
......
...@@ -197,7 +197,7 @@ for code in ALL STD ; do ...@@ -197,7 +197,7 @@ for code in ALL STD ; do
fi fi
fi fi
# Append "/"; remove initial "./". Hence "." -> "" and "sys" -> "sys/". # Append "/"; remove initial "./". Hence "." -> "" and "sys" -> "sys/".
rel_source_prefix=`echo $rel_source_subdir | sed -e 's|$|/|' -e 's|^./||'` rel_source_prefix=`echo $rel_source_subdir | sed -e 's|$|/|' -e 's|^\./||'`
case $code in case $code in
ALL) ALL)
......
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