unofficial mirror of bug-guile@gnu.org 
 help / color / mirror / Atom feed
* bug#30011: BSD sed incompatibility as of guile 2.2.3
@ 2018-01-07 10:35 ilove zfs
  2018-01-07 19:41 ` Dan Kegel
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: ilove zfs @ 2018-01-07 10:35 UTC (permalink / raw)
  To: 30011

[-- Attachment #1: Type: text/plain, Size: 731 bytes --]

The following commit broke compatibility with BSD/macOS's version of sed:

http://git.savannah.gnu.org/gitweb/?p=guile.git;a=commit;h=81d2e352663bc5f80734312fec90f250b1fbe2e4


The error is "sed: -i may not be used with stdin" as described in https://stackoverflow.com/questions/21242932/sed-i-may-not-be-used-with-stdin-on-mac-os-x



As a workaround I can replace the "         -i" in INSTANTIATE in libguile/Makefile.am with "         -i ''"



The incompatibility still exists in guile master as of http://git.savannah.gnu.org/gitweb/?p=guile.git;a=blob;f=libguile/Makefile.am;h=a9646d88319c50853388268416f4d0773162969e;hb=HEAD#l476


Ref: https://github.com/Homebrew/homebrew-core/pull/21635

[-- Attachment #2.1: Type: text/html, Size: 1451 bytes --]

^ permalink raw reply	[flat|nested] 5+ messages in thread

* bug#30011: BSD sed incompatibility as of guile 2.2.3
  2018-01-07 10:35 bug#30011: BSD sed incompatibility as of guile 2.2.3 ilove zfs
@ 2018-01-07 19:41 ` Dan Kegel
  2018-01-07 20:12 ` ilove zfs
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 5+ messages in thread
From: Dan Kegel @ 2018-01-07 19:41 UTC (permalink / raw)
  To: ilove zfs; +Cc: 30011

Builds from release tarball might not run into this,
as the tarball already includes the file that rule creates;
at any rate, I don't run into that in my build of 2.2.3 on macosx.





^ permalink raw reply	[flat|nested] 5+ messages in thread

* bug#30011: BSD sed incompatibility as of guile 2.2.3
  2018-01-07 10:35 bug#30011: BSD sed incompatibility as of guile 2.2.3 ilove zfs
  2018-01-07 19:41 ` Dan Kegel
@ 2018-01-07 20:12 ` ilove zfs
  2018-01-07 21:05 ` ilove zfs
  2018-02-16 14:31 ` Ludovic Courtès
  3 siblings, 0 replies; 5+ messages in thread
From: ilove zfs @ 2018-01-07 20:12 UTC (permalink / raw)
  To: Dan Kegel; +Cc: 30011

[-- Attachment #1: Type: text/plain, Size: 439 bytes --]

The build is indeed using https://ftp.gnu.org/gnu/guile/guile-2.2.3.tar.xz



> I don't run into that in my build of 2.2.3 on macosx.



You may have gnu-sed installed then.


On Jan 07, 2018, at 11:41 AM, Dan Kegel <dank@kegel.com> wrote:


Builds from release tarball might not run into this,
as the tarball already includes the file that rule creates;
at any rate, I don't run into that in my build of 2.2.3 on macosx.

[-- Attachment #2.1: Type: text/html, Size: 872 bytes --]

^ permalink raw reply	[flat|nested] 5+ messages in thread

* bug#30011: BSD sed incompatibility as of guile 2.2.3
  2018-01-07 10:35 bug#30011: BSD sed incompatibility as of guile 2.2.3 ilove zfs
  2018-01-07 19:41 ` Dan Kegel
  2018-01-07 20:12 ` ilove zfs
@ 2018-01-07 21:05 ` ilove zfs
  2018-02-16 14:31 ` Ludovic Courtès
  3 siblings, 0 replies; 5+ messages in thread
From: ilove zfs @ 2018-01-07 21:05 UTC (permalink / raw)
  To: Dan Kegel; +Cc: 30011

[-- Attachment #1: Type: text/plain, Size: 1046 bytes --]

In case it helps, here are full build logs:

https://github.com/Homebrew/homebrew-core/pull/22542

https://jenkins.brew.sh/job/Homebrew%20Core%20Pull%20Requests/16097/version=high_sierra/console
https://jenkins.brew.sh/job/Homebrew%20Core%20Pull%20Requests/16097/version=sierra/console

https://jenkins.brew.sh/job/Homebrew%20Core%20Pull%20Requests/16097/version=el_capitan/console



I can reproduce it locally, outside of Homebrew, with the release tarball, and the problem occurs during `make install` not `make`.


On Jan 07, 2018, at 12:12 PM, ilove zfs <ilovezfs@icloud.com> wrote:


The build is indeed using https://ftp.gnu.org/gnu/guile/guile-2.2.3.tar.xz



> I don't run into that in my build of 2.2.3 on macosx.



You may have gnu-sed installed then.


On Jan 07, 2018, at 11:41 AM, Dan Kegel <dank@kegel.com> wrote:


Builds from release tarball might not run into this,
as the tarball already includes the file that rule creates;
at any rate, I don't run into that in my build of 2.2.3 on macosx.

[-- Attachment #2.1: Type: text/html, Size: 2307 bytes --]

^ permalink raw reply	[flat|nested] 5+ messages in thread

* bug#30011: BSD sed incompatibility as of guile 2.2.3
  2018-01-07 10:35 bug#30011: BSD sed incompatibility as of guile 2.2.3 ilove zfs
                   ` (2 preceding siblings ...)
  2018-01-07 21:05 ` ilove zfs
@ 2018-02-16 14:31 ` Ludovic Courtès
  3 siblings, 0 replies; 5+ messages in thread
From: Ludovic Courtès @ 2018-02-16 14:31 UTC (permalink / raw)
  To: ilove zfs; +Cc: 30011-done

ilove zfs <ilovezfs@icloud.com> skribis:

> The following commit broke compatibility with BSD/macOS's version of sed:
> http://git.savannah.gnu.org/gitweb/?p=guile.git;a=commit;h=81d2e352663bc5f80734312fec90f250b1fbe2e4
>
> The error is "sed: -i may not be used with stdin" as described in
> https://stackoverflow.com/questions/21242932/sed-i-may-not-be-used-with-stdin-on-mac-os-x

I believe this is fixed with
<https://git.savannah.gnu.org/cgit/guile.git/commit/?h=stable-2.2&id=7ade0485af40fef38ae666331031b733530a95bc>.

Thanks,
Ludo'.





^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2018-02-16 14:31 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-01-07 10:35 bug#30011: BSD sed incompatibility as of guile 2.2.3 ilove zfs
2018-01-07 19:41 ` Dan Kegel
2018-01-07 20:12 ` ilove zfs
2018-01-07 21:05 ` ilove zfs
2018-02-16 14:31 ` Ludovic Courtès

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).