SapphireDensetsu / ypsilon

Automatically exported from code.google.com/p/ypsilon
Other
0 stars 0 forks source link

Makefile installs inconvenient permissions #14

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
"make install" does:
chmod a-w,a+rX /home/d/bin/ypsilon
chmod a-wx,a+r /home/d/share/man/man1/ypsilon.1

This causes the following error when trying to "make install" after
updating the SVN trunk:

$ make install
[...]
cp ypsilon /home/d/bin/ypsilon
cp: cannot create regular file `/home/d/bin/ypsilon': Permission denied
make: *** [install] Error 1
$ # Because:
$ ls -l /home/d/bin/ypsilon
-r-xr-xr-x 1 d d 1175566 2008-06-21 23:49 /home/d/bin/ypsilon

I suggest instead:
chmod 0755 /home/d/bin/ypsilon
chmod 0644 /home/d/share/man/man1/ypsilon.1

Original issue reported on code.google.com by derick.e...@gmail.com on 23 Jun 2008 at 5:50

GoogleCodeExporter commented 8 years ago
I have fixed Makefile and trunk directory is updated. Thank you!

Original comment by y.fujita...@gmail.com on 24 Jun 2008 at 2:25