[#29911] [Bug #3231] Digest Does Not Build — Charlie Savage <redmine@...>

Bug #3231: Digest Does Not Build

19 messages 2010/05/01

[#29920] [Feature #3232] Loops (while/until) should return last statement value if any, like if/unless — Benoit Daloze <redmine@...>

Feature #3232: Loops (while/until) should return last statement value if any, like if/unless

9 messages 2010/05/01

[#29997] years in Time.utc — Xavier Noria <fxn@...>

Does anyone have a precise statement about the years supported by

13 messages 2010/05/04

[#30010] [Bug #3248] extension 'tk' is finding tclConfig.sh and tkConfig.sh incorrectly — Luis Lavena <redmine@...>

Bug #3248: extension 'tk' is finding tclConfig.sh and tkConfig.sh incorrectly

9 messages 2010/05/05

[#30226] [Bug #3288] Segmentation fault - activesupport-3.0.0.beta3/lib/active_support/callbacks.rb:88 — Szymon Jeż <redmine@...>

Bug #3288: Segmentation fault - activesupport-3.0.0.beta3/lib/active_support/callbacks.rb:88

10 messages 2010/05/13

[#30358] tk doesn't startup well in doze — Roger Pack <rogerdpack2@...>

Currently with 1.9.x and tk 8.5,the following occurs

12 messages 2010/05/22

[ruby-core:30270] [Bug #3299] revision.h rule in common.mk is broken for MSVC

From: Romulo Ceccon <redmine@...>
Date: 2010-05-16 17:08:18 UTC
List: ruby-core #30270
Issue #3299 has been updated by Romulo Ceccon.


> It works fine with cygwin sed for me, what version of sed do
> you use?

I use the version from http://gnuwin32.sourceforge.net (Sed-4.2). But the likely problem is that you're testing under a Cygwin shell, while I'm testing from the native Windows shell (cmd.exe). So the sed command line works for you, but not for me. For example, the first expression ('/^URL:/{') is understood by the Cygwin shell as a quoted string, and sed receives /^URL:/{ (without quotes) as the argument. Cmd.exe does not interpret ' as a special character, so it passes '/^URL:/{' (with quotes) as the argument to sed. Sed.exe then fails with:

  sed: -e expression #1, character 1: unknown command: '''  [translated from Portuguese]

Replacing ' by " would be enough if the third expression didn't have a " inside. I couldn't come up with an inline string which would work in both Windows and Posix systems. (Well, actually I did come up with one, but it worked only when executed from the shell, and not through the Makefile. At that point I thought that adding an additional layer of character escaping (to satisfy make/nmake rules) would make the expressions unreadable.) So I moved them to a separate file.

----------------------------------------
http://redmine.ruby-lang.org/issues/show/3299

----------------------------------------
http://redmine.ruby-lang.org

In This Thread