[Mono-bugs] [Bug 51666][Maj] Changed - Creating makefrag files fails on OSX
bugzilla-daemon@bugzilla.ximian.com
bugzilla-daemon@bugzilla.ximian.com
Thu, 4 Dec 2003 11:44:19 -0500 (EST)
Please do not reply to this email- if you want to comment on the bug, go to the
URL shown below and enter your comments there.
Changed by lupus@ximian.com.
http://bugzilla.ximian.com/show_bug.cgi?id=51666
--- shadow/51666 2003-12-03 22:17:36.000000000 -0500
+++ shadow/51666.tmp.10857 2003-12-04 11:44:19.000000000 -0500
@@ -10,19 +10,24 @@
Component: misc
AssignedTo: mono-bugs@ximian.com
ReportedBy: rshade@dvsconsulting.com
QAContact: mono-bugs@ximian.com
TargetMilestone: ---
URL:
-Cc:
Summary: Creating makefrag files fails on OSX
Creating makefrag files (such as corlib.dll.makefrag) fails under OSX because echo -e is not
being used. This results in the characters "\ttouch" being placed at the end of the file instead
of a tab character followed by the command touch.
Whether to use "echo -e" or "echo" is determined in mcs/build/config-default.make. The check
for HP/UX is causing ECHO_ESCAPE to be set to "echo".
------- Additional Comments From gonzalo@ximian.com 2003-12-03 22:17 -------
What does 'echo -e foo' produce in HP/UX?
+
+------- Additional Comments From lupus@ximian.com 2003-12-04 11:44 -------
+In many old unix variants -e is not supported and echo doesn't support
+escape characters.
+The makefiles should probably be changed to just embed the TAB char
+instead of \t. Waiting from comments by Peter.