- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- set RANLIB to /bin/true
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-26-2006 06:22 AM
07-26-2006 06:22 AM
set RANLIB to /bin/true
GBR
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-26-2006 06:28 AM
07-26-2006 06:28 AM
Re: set RANLIB to /bin/true
Not having any context to go on other than what you gave, I would guess at doing something like this:
export RANLIB=/bin/true
Pete
Pete
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-26-2006 06:31 AM
07-26-2006 06:31 AM
Re: set RANLIB to /bin/true
'ranlib' generates an index for an archive library. Its use is now deprecated, so you should replace references to 'ranlib' in makefiles with '/bin/true'. This will yield a return code of 0 for each instance.
PCS
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-26-2006 06:37 AM
07-26-2006 06:37 AM
Re: set RANLIB to /bin/true
Thanks, I will try your suggestion.
spex,
Thanks, for your explanation.
Greg
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-26-2006 06:38 AM
07-26-2006 06:38 AM
Re: set RANLIB to /bin/true
First, the 'bin' path in HP-UX is deprecated. It is really a transition link to '/usr/bin'.
That aside, '/usr/bin/true' simply returns an exit code of zero (0). Correspondingly, '/usr/bin/false' yields an exit code of one (1). Neither does anything else!
One uses '/usr/bin/false' or '/usr/bin/true' for instance, in lieu of the shell program for users in '/etc/passwd' to deny a login.
Regards!
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-26-2006 06:45 PM
07-26-2006 06:45 PM
Re: set RANLIB to /bin/true
when running 'configure' in preparation for compiling public software packages, do it like this:
./configure --
mfG Peter
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-27-2006 02:15 AM
07-27-2006 02:15 AM
Re: set RANLIB to /bin/true
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-27-2006 02:19 AM
07-27-2006 02:19 AM
Re: set RANLIB to /bin/true
Closing.