<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic set RANLIB to /bin/true in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/set-ranlib-to-bin-true/m-p/4993344#M422792</link>
    <description>Can someone explain to me what "setting RANLIB to /bin/true" means and how to do it when I'm trying to configure and compile some new software?&lt;BR /&gt;&lt;BR /&gt;GBR</description>
    <pubDate>Wed, 26 Jul 2006 13:22:41 GMT</pubDate>
    <dc:creator>GBR</dc:creator>
    <dc:date>2006-07-26T13:22:41Z</dc:date>
    <item>
      <title>set RANLIB to /bin/true</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/set-ranlib-to-bin-true/m-p/4993344#M422792</link>
      <description>Can someone explain to me what "setting RANLIB to /bin/true" means and how to do it when I'm trying to configure and compile some new software?&lt;BR /&gt;&lt;BR /&gt;GBR</description>
      <pubDate>Wed, 26 Jul 2006 13:22:41 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/set-ranlib-to-bin-true/m-p/4993344#M422792</guid>
      <dc:creator>GBR</dc:creator>
      <dc:date>2006-07-26T13:22:41Z</dc:date>
    </item>
    <item>
      <title>Re: set RANLIB to /bin/true</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/set-ranlib-to-bin-true/m-p/4993345#M422793</link>
      <description>Greg,&lt;BR /&gt;&lt;BR /&gt;Not having any context to go on other than what you gave, I would guess at doing something like this:&lt;BR /&gt;&lt;BR /&gt;export RANLIB=/bin/true&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Pete</description>
      <pubDate>Wed, 26 Jul 2006 13:28:57 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/set-ranlib-to-bin-true/m-p/4993345#M422793</guid>
      <dc:creator>Pete Randall</dc:creator>
      <dc:date>2006-07-26T13:28:57Z</dc:date>
    </item>
    <item>
      <title>Re: set RANLIB to /bin/true</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/set-ranlib-to-bin-true/m-p/4993346#M422794</link>
      <description>GBR,&lt;BR /&gt;&lt;BR /&gt;'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.&lt;BR /&gt;&lt;BR /&gt;PCS</description>
      <pubDate>Wed, 26 Jul 2006 13:31:35 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/set-ranlib-to-bin-true/m-p/4993346#M422794</guid>
      <dc:creator>spex</dc:creator>
      <dc:date>2006-07-26T13:31:35Z</dc:date>
    </item>
    <item>
      <title>Re: set RANLIB to /bin/true</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/set-ranlib-to-bin-true/m-p/4993347#M422795</link>
      <description>Pete,&lt;BR /&gt;Thanks, I will try your suggestion.&lt;BR /&gt;&lt;BR /&gt;spex,&lt;BR /&gt;Thanks, for your explanation.&lt;BR /&gt;&lt;BR /&gt;Greg</description>
      <pubDate>Wed, 26 Jul 2006 13:37:53 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/set-ranlib-to-bin-true/m-p/4993347#M422795</guid>
      <dc:creator>GBR</dc:creator>
      <dc:date>2006-07-26T13:37:53Z</dc:date>
    </item>
    <item>
      <title>Re: set RANLIB to /bin/true</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/set-ranlib-to-bin-true/m-p/4993348#M422796</link>
      <description>Hi Greg:&lt;BR /&gt;&lt;BR /&gt;First, the 'bin' path in HP-UX is deprecated.  It is really a transition link to '/usr/bin'.&lt;BR /&gt;&lt;BR /&gt;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!&lt;BR /&gt;&lt;BR /&gt;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.&lt;BR /&gt;&lt;BR /&gt;Regards!&lt;BR /&gt;&lt;BR /&gt;...JRF...</description>
      <pubDate>Wed, 26 Jul 2006 13:38:24 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/set-ranlib-to-bin-true/m-p/4993348#M422796</guid>
      <dc:creator>James R. Ferguson</dc:creator>
      <dc:date>2006-07-26T13:38:24Z</dc:date>
    </item>
    <item>
      <title>Re: set RANLIB to /bin/true</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/set-ranlib-to-bin-true/m-p/4993349#M422797</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;when running 'configure' in preparation for compiling public software packages, do it like this:&lt;BR /&gt;./configure --&lt;CONFIGURE-OPTION&gt; RANLIB=/usr/bin/true &lt;OTHEROPT&gt; ...&lt;BR /&gt;&lt;BR /&gt;mfG Peter&lt;/OTHEROPT&gt;&lt;/CONFIGURE-OPTION&gt;</description>
      <pubDate>Thu, 27 Jul 2006 01:45:22 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/set-ranlib-to-bin-true/m-p/4993349#M422797</guid>
      <dc:creator>Peter Nikitka</dc:creator>
      <dc:date>2006-07-27T01:45:22Z</dc:date>
    </item>
    <item>
      <title>Re: set RANLIB to /bin/true</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/set-ranlib-to-bin-true/m-p/4993350#M422798</link>
      <description>Thanks Peter,  I'm going to modify my command line arguments to include that.</description>
      <pubDate>Thu, 27 Jul 2006 09:15:35 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/set-ranlib-to-bin-true/m-p/4993350#M422798</guid>
      <dc:creator>GBR</dc:creator>
      <dc:date>2006-07-27T09:15:35Z</dc:date>
    </item>
    <item>
      <title>Re: set RANLIB to /bin/true</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/set-ranlib-to-bin-true/m-p/4993351#M422799</link>
      <description>With Peter's response both of my questions have been answered.  Perfect!&lt;BR /&gt;&lt;BR /&gt;Closing.</description>
      <pubDate>Thu, 27 Jul 2006 09:19:27 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/set-ranlib-to-bin-true/m-p/4993351#M422799</guid>
      <dc:creator>GBR</dc:creator>
      <dc:date>2006-07-27T09:19:27Z</dc:date>
    </item>
  </channel>
</rss>

