public inbox for linux-man@vger.kernel.org
 help / color / mirror / Atom feed
* [Bug 218730] New: [regression, bisected] 'make install' fails on darwin
@ 2024-04-15 21:01 bugzilla-daemon
  2024-04-15 21:47 ` [Bug 218730] " bugzilla-daemon
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: bugzilla-daemon @ 2024-04-15 21:01 UTC (permalink / raw)
  To: linux-man

https://bugzilla.kernel.org/show_bug.cgi?id=218730

            Bug ID: 218730
           Summary: [regression, bisected] 'make install' fails on darwin
           Product: Documentation
           Version: unspecified
          Hardware: All
                OS: Linux
            Status: NEW
          Severity: normal
          Priority: P3
         Component: man-pages
          Assignee: documentation_man-pages@kernel-bugs.osdl.org
          Reporter: slyich@gmail.com
        Regression: No

It's a forward of downstream `nixpkgs` report at
https://github.com/NixOS/nixpkgs/pull/300797#issuecomment-2056982667 where
`nixpkgs` trod to update `man-pages` from `6.05.01` to `6.7`.

There `make install` started failing on Darwin as:

    $ make install prefix=$(pwd)/__i__
    INSTALL /Users/test/man-pages/__i__/share/man/man1/
    INSTALL /Users/test/man-pages/__i__/share/man/man1/intro.1
    install: skipping file '/dev/stdin', as it was replaced while being copied
    make: *** [share/mk/install/man.mk:60:
/Users/test/man-pages/__i__/share/man/man1/intro.1] Error 1

`git bisect` landed on this change:

$ git bisect bad
30c38a8bf8ae8f4a6e71d3b8ac4abf0a40778f1e is the first bad commit
commit 30c38a8bf8ae8f4a6e71d3b8ac4abf0a40778f1e
Author: Alejandro Colomar <alx@kernel.org>
Date:   Mon Aug 28 01:21:45 2023 +0200

    *.mk: Pipe to install(1)

    Signed-off-by: Alejandro Colomar <alx@kernel.org>

 share/mk/dist.mk        | 7 ++++---
 share/mk/install/man.mk | 6 +++---
 2 files changed, 7 insertions(+), 6 deletions(-)

The system is: x86_64-apple-darwin18.7.0.

-- 
You may reply to this email to add a comment.

You are receiving this mail because:
You are watching the assignee of the bug.

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

* [Bug 218730] [regression, bisected] 'make install' fails on darwin
  2024-04-15 21:01 [Bug 218730] New: [regression, bisected] 'make install' fails on darwin bugzilla-daemon
@ 2024-04-15 21:47 ` bugzilla-daemon
  2024-04-20  9:35 ` bugzilla-daemon
  2024-04-20 10:06 ` bugzilla-daemon
  2 siblings, 0 replies; 4+ messages in thread
From: bugzilla-daemon @ 2024-04-15 21:47 UTC (permalink / raw)
  To: linux-man

https://bugzilla.kernel.org/show_bug.cgi?id=218730

--- Comment #1 from Sergei Trofimovich (slyich@gmail.com) ---
This seems to be the difference between two systems on coreutils-9.4 where
`install` comes from on my systems:

Linux (works):

    $ mkdir -p foo; echo 42 | install -m 644 -T /dev/stdin ./foo/a; echo $?
    0

Darwin (fails):

    $ mkdir -p foo; echo 42 | install -m 644 -T /dev/stdin ./foo/a; echo $?
    install: skipping file '/dev/stdin', as it was replaced while being copied
    1

-- 
You may reply to this email to add a comment.

You are receiving this mail because:
You are watching the assignee of the bug.

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

* [Bug 218730] [regression, bisected] 'make install' fails on darwin
  2024-04-15 21:01 [Bug 218730] New: [regression, bisected] 'make install' fails on darwin bugzilla-daemon
  2024-04-15 21:47 ` [Bug 218730] " bugzilla-daemon
@ 2024-04-20  9:35 ` bugzilla-daemon
  2024-04-20 10:06 ` bugzilla-daemon
  2 siblings, 0 replies; 4+ messages in thread
From: bugzilla-daemon @ 2024-04-20  9:35 UTC (permalink / raw)
  To: linux-man

https://bugzilla.kernel.org/show_bug.cgi?id=218730

--- Comment #2 from Sergei Trofimovich (slyich@gmail.com) ---
https://git.kernel.org/pub/scm/docs/man-pages/man-pages.git/commit/?id=9524f0f63badd896ccf6da7d79511100d86c4721
fixes it for me.

-- 
You may reply to this email to add a comment.

You are receiving this mail because:
You are watching the assignee of the bug.

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

* [Bug 218730] [regression, bisected] 'make install' fails on darwin
  2024-04-15 21:01 [Bug 218730] New: [regression, bisected] 'make install' fails on darwin bugzilla-daemon
  2024-04-15 21:47 ` [Bug 218730] " bugzilla-daemon
  2024-04-20  9:35 ` bugzilla-daemon
@ 2024-04-20 10:06 ` bugzilla-daemon
  2 siblings, 0 replies; 4+ messages in thread
From: bugzilla-daemon @ 2024-04-20 10:06 UTC (permalink / raw)
  To: linux-man

https://bugzilla.kernel.org/show_bug.cgi?id=218730

Alejandro Colomar (alx@kernel.org) changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
                 CC|                            |alx@kernel.org
         Resolution|---                         |CODE_FIX

--- Comment #3 from Alejandro Colomar (alx@kernel.org) ---
Thanks for reminding me that I should close this!  :-)

Have a lovely day!
Alex

-- 
You may reply to this email to add a comment.

You are receiving this mail because:
You are watching the assignee of the bug.

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

end of thread, other threads:[~2024-04-20 10:06 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-04-15 21:01 [Bug 218730] New: [regression, bisected] 'make install' fails on darwin bugzilla-daemon
2024-04-15 21:47 ` [Bug 218730] " bugzilla-daemon
2024-04-20  9:35 ` bugzilla-daemon
2024-04-20 10:06 ` bugzilla-daemon

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox