You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Dec 29, 2022. It is now read-only.
The setup.py script lists the Python script as a 'data file', alike:
data_files=[("bin", ["gflags2man.py"])],
while it should be a 'script' instead:
scripts=["gflags2man.py"],
Installing it a script will make sure that distutils correctly update the
Python shebang and make the script executable.
I'm attaching a patch fixing setup.py.
Original issue reported on code.google.com by mgo...@gentoo.org on 16 Dec 2012 at 3:41