> I wonder if that is bug with 'make
> install' on Mac OS X. Should I submit a bug report?

The bug probably lies with /usr/bin/install:
https://bugzilla.redhat.com/show_bug.cgi?id=632444

        install -s -m 755 <source> <destination>

depends on /usr/bin/strip for the "-s".  When /usr/bin/strip
is not there, then 'install' aborts before processing the "-m 775".
This leaves the destination with permissions 0600 (rw-------).
So 'install' should recover from missing 'strip', or at least
give an explicit warning about unprocessed flags.

Of course valgrind could work around the bug in several ways:
don't ask for stripping, do the strip before the install, do the
strip after the install, do an explicit chmod after the install, ...

-- 

------------------------------------------------------------------------------
The Next 800 Companies to Lead America's Growth: New Video Whitepaper
David G. Thomson, author of the best-selling book "Blueprint to a 
Billion" shares his insights and actions to help propel your 
business during the next growth cycle. Listen Now!
http://p.sf.net/sfu/SAP-dev2dev
_______________________________________________
Valgrind-users mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/valgrind-users

Reply via email to