<?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 Re: Make: Must be a separator on rules line 8.  Stop. in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/make-must-be-a-separator-on-rules-line-8-stop/m-p/3808455#M779969</link>
    <description>Sorry, talking rot there, of course 'else' is supported.&lt;BR /&gt;&lt;BR /&gt;Should read&lt;BR /&gt;&lt;BR /&gt;6 ifeq ($(LOGNAME),latn)&lt;BR /&gt;7 [tab]BILLDIR=bill1&lt;BR /&gt;8 else&lt;BR /&gt;9 [tab]BILLDIR=billcs&lt;BR /&gt;10 endif&lt;BR /&gt;&lt;BR /&gt;Don't put ANY spaces before BILLDIR=, only tabs.&lt;BR /&gt;</description>
    <pubDate>Wed, 21 Jun 2006 05:40:56 GMT</pubDate>
    <dc:creator>Stephen Keane</dc:creator>
    <dc:date>2006-06-21T05:40:56Z</dc:date>
    <item>
      <title>Make: Must be a separator on rules line 8.  Stop.</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/make-must-be-a-separator-on-rules-line-8-stop/m-p/3808449#M779963</link>
      <description>3  PRELIB=$(ORACLE_HOME)/precomp/lib/&lt;BR /&gt; 4  ORALIB=$(ORACLE_HOME)/lib/&lt;BR /&gt; 5  #BILLDIR = $(shell if [ `whoami` != "latn" ]; then echo "billcs"; else echo "bill1"; fi)&lt;BR /&gt;     6  ifeq ($(LOGNAME),latn)&lt;BR /&gt;     7    BILLDIR=bill1&lt;BR /&gt;     8  else&lt;BR /&gt;     9    BILLDIR=billcs&lt;BR /&gt;    10  endif&lt;BR /&gt;    11  LIB_PATH=/home/$(BILLDIR)/charge_group/rkm&lt;BR /&gt;at line 8 just "else", can anyone help me?</description>
      <pubDate>Tue, 20 Jun 2006 01:35:37 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/make-must-be-a-separator-on-rules-line-8-stop/m-p/3808449#M779963</guid>
      <dc:creator>ysean_young</dc:creator>
      <dc:date>2006-06-20T01:35:37Z</dc:date>
    </item>
    <item>
      <title>Re: Make: Must be a separator on rules line 8.  Stop.</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/make-must-be-a-separator-on-rules-line-8-stop/m-p/3808450#M779964</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;I think, the 'make' assumes the start of a build rule script here but does not detect a TAB.&lt;BR /&gt;&lt;BR /&gt;Some things to check:&lt;BR /&gt;- you may run a make version which is not compatibel to GNUmake&lt;BR /&gt;- there may be an error in the Makefile on lines before&lt;BR /&gt;- drop the commented line completely&lt;BR /&gt;- check for nonprintable characters&lt;BR /&gt;- check content of environment var LOGNAME&lt;BR /&gt;&lt;BR /&gt;mfG Peter&lt;BR /&gt;</description>
      <pubDate>Tue, 20 Jun 2006 10:11:29 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/make-must-be-a-separator-on-rules-line-8-stop/m-p/3808450#M779964</guid>
      <dc:creator>Peter Nikitka</dc:creator>
      <dc:date>2006-06-20T10:11:29Z</dc:date>
    </item>
    <item>
      <title>Re: Make: Must be a separator on rules line 8.  Stop.</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/make-must-be-a-separator-on-rules-line-8-stop/m-p/3808451#M779965</link>
      <description>You're missing the keyword "then" for the if statement starting on line 6 i.e.&lt;BR /&gt;&lt;BR /&gt;6 ifeq ($(LOGNAME),latn); then&lt;BR /&gt;7 BILLDIR=bill1&lt;BR /&gt;8 else&lt;BR /&gt;9 BILLDIR=billcs&lt;BR /&gt;10 endif</description>
      <pubDate>Tue, 20 Jun 2006 10:16:30 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/make-must-be-a-separator-on-rules-line-8-stop/m-p/3808451#M779965</guid>
      <dc:creator>Sandman!</dc:creator>
      <dc:date>2006-06-20T10:16:30Z</dc:date>
    </item>
    <item>
      <title>Re: Make: Must be a separator on rules line 8.  Stop.</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/make-must-be-a-separator-on-rules-line-8-stop/m-p/3808452#M779966</link>
      <description>Hi Sandman,&lt;BR /&gt;&lt;BR /&gt;in my gmake 3.79 it is an error using 'ifeq' with 'then':&lt;BR /&gt;&lt;BR /&gt;/tmp/mkf:1: Extraneous text after `ifeq' directive&lt;BR /&gt;&lt;BR /&gt;mfG Peter</description>
      <pubDate>Tue, 20 Jun 2006 10:23:21 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/make-must-be-a-separator-on-rules-line-8-stop/m-p/3808452#M779966</guid>
      <dc:creator>Peter Nikitka</dc:creator>
      <dc:date>2006-06-20T10:23:21Z</dc:date>
    </item>
    <item>
      <title>Re: Make: Must be a separator on rules line 8.  Stop.</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/make-must-be-a-separator-on-rules-line-8-stop/m-p/3808453#M779967</link>
      <description>You're right Peter...didn't read the post well and ended up mistaking ifeq for if.&lt;BR /&gt;&lt;BR /&gt;cheers!</description>
      <pubDate>Tue, 20 Jun 2006 10:38:24 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/make-must-be-a-separator-on-rules-line-8-stop/m-p/3808453#M779967</guid>
      <dc:creator>Sandman!</dc:creator>
      <dc:date>2006-06-20T10:38:24Z</dc:date>
    </item>
    <item>
      <title>Re: Make: Must be a separator on rules line 8.  Stop.</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/make-must-be-a-separator-on-rules-line-8-stop/m-p/3808454#M779968</link>
      <description>Try&lt;BR /&gt;&lt;BR /&gt;ifeq ($(LOGNAME),latn)&lt;BR /&gt;BILLDIR=bill1&lt;BR /&gt;endif&lt;BR /&gt;&lt;BR /&gt;ifneq ($(LOGNAME),latn)&lt;BR /&gt;BILLDIR=billcs&lt;BR /&gt;endif&lt;BR /&gt;&lt;BR /&gt;I'm not sure if 'else' is supported in an "ifeq" block.&lt;BR /&gt;</description>
      <pubDate>Wed, 21 Jun 2006 05:38:18 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/make-must-be-a-separator-on-rules-line-8-stop/m-p/3808454#M779968</guid>
      <dc:creator>Stephen Keane</dc:creator>
      <dc:date>2006-06-21T05:38:18Z</dc:date>
    </item>
    <item>
      <title>Re: Make: Must be a separator on rules line 8.  Stop.</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/make-must-be-a-separator-on-rules-line-8-stop/m-p/3808455#M779969</link>
      <description>Sorry, talking rot there, of course 'else' is supported.&lt;BR /&gt;&lt;BR /&gt;Should read&lt;BR /&gt;&lt;BR /&gt;6 ifeq ($(LOGNAME),latn)&lt;BR /&gt;7 [tab]BILLDIR=bill1&lt;BR /&gt;8 else&lt;BR /&gt;9 [tab]BILLDIR=billcs&lt;BR /&gt;10 endif&lt;BR /&gt;&lt;BR /&gt;Don't put ANY spaces before BILLDIR=, only tabs.&lt;BR /&gt;</description>
      <pubDate>Wed, 21 Jun 2006 05:40:56 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/make-must-be-a-separator-on-rules-line-8-stop/m-p/3808455#M779969</guid>
      <dc:creator>Stephen Keane</dc:creator>
      <dc:date>2006-06-21T05:40:56Z</dc:date>
    </item>
  </channel>
</rss>

