RPM file modes wrong

Stephen Weeks MLton@sourcelight.com
Fri, 29 Jun 2001 15:38:10 -0700


> I  don't if this was there before, but in the binary RPM, the stuff that gets
> put in /usr/local/lib/mlton/include is mode 666 (writable by  everyone).   It
> should be 644 (although 444 would not be horrible).
> 
> This is VERY BAD.

Agreed.  I recently added the following line to the install target in
src/Makefile

		chmod a+w $(TLIB)/include/*				

I have changed it to

		chmod u+w $(TLIB)/include/*