Makefile: do not use --copies when creating git-cola.app
commitc83f1f699ce698a4ec6a42ca61f43802ca6f19b3
authorDavid Aguilar <davvid@gmail.com>
Sun, 13 Aug 2023 05:58:35 +0000 (12 22:58 -0700)
committerDavid Aguilar <davvid@gmail.com>
Sun, 13 Aug 2023 06:01:18 +0000 (12 23:01 -0700)
tree17aaf1b92d517bcc79d4818609ffe54a238da0e3
parent38e2b7fe8c21f62fbd3c6121c0749eb6871a0865
Makefile: do not use --copies when creating git-cola.app

Some python installations (eg. ones created with relocatable-python on macOS)
hit errors when using --copies.

    $ make git-cola.app
    mkdir -p git-cola.app/Contents/MacOS
    mkdir -p git-cola.app/Contents/Resources
    python3 -m venv --copies git-cola.app/Contents/Resources
    Error: Command '[
        'git-cola.app/Contents/Resources/bin/python3', '-Im',
        'ensurepip', '--upgrade', '--default-pip'
    ]' died with <Signals.SIGABRT: 6>.
    make: *** [git-cola.app] Error 1

Remove this flag for now.

Signed-off-by: David Aguilar <davvid@gmail.com>
Makefile