git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* chmod: missing operand after ‘a+rwx’
@ 2020-05-07  2:03 Jeffrey Walton
  2020-05-07  2:58 ` Jeffrey Walton
  2020-05-07 19:11 ` Torsten Bögershausen
  0 siblings, 2 replies; 4+ messages in thread
From: Jeffrey Walton @ 2020-05-07  2:03 UTC (permalink / raw)
  To: Git List

Hi Everyone,

Git 2.26.2 passes its self tests on OS X using libiconv-utf8mac.

It looks like one issue remains during make install:

        for p in $remote_curl_aliases; do \
                rm -f "$execdir/$p" && \
                test -n "" && \
                ln -s "git-remote-http" "$execdir/$p" || \
                { test -z "" && \
                  ln "$execdir/git-remote-http" "$execdir/$p" 2>/dev/null || \
                  ln -s "git-remote-http" "$execdir/$p" 2>/dev/null || \
                  cp "$execdir/git-remote-http" "$execdir/$p" || exit; } \
        done && \
        ./check_bindir "z$bindir" "z$execdir" "$bindir/git-add"
usage:  chmod [-fhv] [-R [-H | -L | -P]] [-a | +a | =a  [i][# [ n]]]
mode|entry file ...
        chmod [-fhv] [-R [-H | -L | -P]] [-E | -C | -N | -i | -I] file ...

And on Ubuntu 18.04:

for p in $remote_curl_aliases; do \
        rm -f "$execdir/$p" && \
        test -n "" && \
        ln -s "git-remote-http" "$execdir/$p" || \
        { test -z "" && \
          ln "$execdir/git-remote-http" "$execdir/$p" 2>/dev/null || \
          ln -s "git-remote-http" "$execdir/$p" 2>/dev/null || \
          cp "$execdir/git-remote-http" "$execdir/$p" || exit; } \
done && \
./check_bindir "z$bindir" "z$execdir" "$bindir/git-add"
chmod: missing operand after ‘a+rwx’
Try 'chmod --help' for more information.

make install stops after the messages. I'm not sure if there is more
to install at this point.

Jeff

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

* Re: chmod: missing operand after ‘a+rwx’
  2020-05-07  2:03 chmod: missing operand after ‘a+rwx’ Jeffrey Walton
@ 2020-05-07  2:58 ` Jeffrey Walton
  2020-05-07 19:11 ` Torsten Bögershausen
  1 sibling, 0 replies; 4+ messages in thread
From: Jeffrey Walton @ 2020-05-07  2:58 UTC (permalink / raw)
  To: Git List

On Wed, May 6, 2020 at 10:03 PM Jeffrey Walton <noloader@gmail.com> wrote:
>
> Hi Everyone,
>
> Git 2.26.2 passes its self tests on OS X using libiconv-utf8mac.
>
> It looks like one issue remains during make install:
>
>         for p in $remote_curl_aliases; do \
>                 rm -f "$execdir/$p" && \
>                 test -n "" && \
>                 ln -s "git-remote-http" "$execdir/$p" || \
>                 { test -z "" && \
>                   ln "$execdir/git-remote-http" "$execdir/$p" 2>/dev/null || \
>                   ln -s "git-remote-http" "$execdir/$p" 2>/dev/null || \
>                   cp "$execdir/git-remote-http" "$execdir/$p" || exit; } \
>         done && \
>         ./check_bindir "z$bindir" "z$execdir" "$bindir/git-add"
> usage:  chmod [-fhv] [-R [-H | -L | -P]] [-a | +a | =a  [i][# [ n]]]
> mode|entry file ...
>         chmod [-fhv] [-R [-H | -L | -P]] [-E | -C | -N | -i | -I] file ...
>
> And on Ubuntu 18.04:
>
> for p in $remote_curl_aliases; do \
>         rm -f "$execdir/$p" && \
>         test -n "" && \
>         ln -s "git-remote-http" "$execdir/$p" || \
>         { test -z "" && \
>           ln "$execdir/git-remote-http" "$execdir/$p" 2>/dev/null || \
>           ln -s "git-remote-http" "$execdir/$p" 2>/dev/null || \
>           cp "$execdir/git-remote-http" "$execdir/$p" || exit; } \
> done && \
> ./check_bindir "z$bindir" "z$execdir" "$bindir/git-add"
> chmod: missing operand after ‘a+rwx’
> Try 'chmod --help' for more information.
>
> make install stops after the messages. I'm not sure if there is more
> to install at this point.

Cancel... This was my script that changed ownership back to the user
in the home directory.

Jeff

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

* Re: chmod: missing operand after ‘a+rwx’
  2020-05-07  2:03 chmod: missing operand after ‘a+rwx’ Jeffrey Walton
  2020-05-07  2:58 ` Jeffrey Walton
@ 2020-05-07 19:11 ` Torsten Bögershausen
  2020-05-07 19:38   ` Jeffrey Walton
  1 sibling, 1 reply; 4+ messages in thread
From: Torsten Bögershausen @ 2020-05-07 19:11 UTC (permalink / raw)
  To: Jeffrey Walton; +Cc: Git List

On Wed, May 06, 2020 at 10:03:01PM -0400, Jeffrey Walton wrote:
> Hi Everyone,
>
> Git 2.26.2 passes its self tests on OS X using libiconv-utf8mac.

I think this sounds like good news; what is libiconv-utf8mac ?
Something you compiled ?
Anything you want to share with us ?


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

* Re: chmod: missing operand after ‘a+rwx’
  2020-05-07 19:11 ` Torsten Bögershausen
@ 2020-05-07 19:38   ` Jeffrey Walton
  0 siblings, 0 replies; 4+ messages in thread
From: Jeffrey Walton @ 2020-05-07 19:38 UTC (permalink / raw)
  To: Torsten Bögershausen; +Cc: Git List

On Thu, May 7, 2020 at 3:11 PM Torsten Bögershausen <tboegi@web.de> wrote:
>
> On Wed, May 06, 2020 at 10:03:01PM -0400, Jeffrey Walton wrote:
> > Hi Everyone,
> >
> > Git 2.26.2 passes its self tests on OS X using libiconv-utf8mac.
>
> I think this sounds like good news; what is libiconv-utf8mac ?
> Something you compiled ?
> Anything you want to share with us ?

You can find libiconv-utf8mac at https://github.com/fumiyas/libiconv-utf8mac.

Jeff

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

end of thread, other threads:[~2020-05-07 19:38 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-05-07  2:03 chmod: missing operand after ‘a+rwx’ Jeffrey Walton
2020-05-07  2:58 ` Jeffrey Walton
2020-05-07 19:11 ` Torsten Bögershausen
2020-05-07 19:38   ` Jeffrey Walton

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 NNTP newsgroup(s).