<?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: Cannot open procob.mk.  Stop. in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/make-cannot-open-procob-mk-stop/m-p/2915646#M934100</link>
    <description>genclntsh calls genclntst which regenerates the archive library libclntst8.a.  This is where your error occurred.  I suspect that you have hit the following Oracle error.  If libclntst.a has been altered by running genclntst, then you should make a backup of genclntst and then apply the Oracle fix described below.&lt;BR /&gt;Problem Description -------------------  When running genclntsh to generate the client shared library the following error is seen:  expr: syntax error basename: too few arguments  Solution Description --------------------  Edit the file $ORACLE_HOME/bin/genclntst and modify the do / done block that starts at line 98 as follows:   do  case "$objname" in  *\(*\))      # REPLACE following 2 lines                  # library=`expr $objname : '\(.*\)\(.*\)'`                 # object=`expr $objname : '.*\(\(.*\)\)'`    library=`echo $objname | sed 's/(.*)//'`                 object=`echo $objname | sed 's/.*(//' | sed 's/)//'`                  libname=`basename $library`                 echo $library &amp;gt; $WRKDIR/$libname.nm                 echo $object &amp;gt;&amp;gt; $WRKDIR/$libname.objs                 ;;         *)                 object=$objname                 cp $object `basename $object`                 ;;         esac done     Explanation -----------  The basename and expr utilities are called with the wrong arguments, genclntst is called from genclntsh to link the static library along with the shared, these modifications will allow you to link the static library successfully too.  References</description>
    <pubDate>Mon, 03 Mar 2003 17:35:56 GMT</pubDate>
    <dc:creator>Ian Lochray</dc:creator>
    <dc:date>2003-03-03T17:35:56Z</dc:date>
    <item>
      <title>Make: Cannot open procob.mk.  Stop.</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/make-cannot-open-procob-mk-stop/m-p/2915624#M934078</link>
      <description>I'm running Oracle 8i now on HP-UNIX B11.00.&lt;BR /&gt;Just a question after this following :&lt;BR /&gt;&lt;BR /&gt;$ make -f procob.mk build COBS="sample1.cob sample2.cob" EXE=sample add PCCFLAGS  &amp;gt; link.lib&lt;BR /&gt;Make: Cannot open procob.mk.  Stop.&lt;BR /&gt;=============================================&lt;BR /&gt;May I need to create the "procob.mk" file as I have already "env_precomp.mk" file?&lt;BR /&gt;&lt;BR /&gt;In order term, if no, what to do exactely?&lt;BR /&gt;&lt;BR /&gt;=============================================&lt;BR /&gt;&lt;BR /&gt;Thanks.&lt;BR /&gt;&lt;BR /&gt;Engo Armand-Blaise.&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 28 Feb 2003 10:15:31 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/make-cannot-open-procob-mk-stop/m-p/2915624#M934078</guid>
      <dc:creator>Engo Armand-Blaise</dc:creator>
      <dc:date>2003-02-28T10:15:31Z</dc:date>
    </item>
    <item>
      <title>Re: Make: Cannot open procob.mk.  Stop.</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/make-cannot-open-procob-mk-stop/m-p/2915625#M934079</link>
      <description>AT 8.1.7, ProCOBOL comes with the sample Makefile $ORACLE_HOME/precomp/demo/procob/demo_procob18.mk.  Try changing procob.mk to demo_procob18.mk in your make command.</description>
      <pubDate>Fri, 28 Feb 2003 10:26:29 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/make-cannot-open-procob-mk-stop/m-p/2915625#M934079</guid>
      <dc:creator>Ian Lochray</dc:creator>
      <dc:date>2003-02-28T10:26:29Z</dc:date>
    </item>
    <item>
      <title>Re: Make: Cannot open procob.mk.  Stop.</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/make-cannot-open-procob-mk-stop/m-p/2915626#M934080</link>
      <description>First thing is that ins_precomp.mk is used for building the precompiler executables.That is enough.&lt;BR /&gt;&lt;BR /&gt;There is no need to create procob.mk&lt;BR /&gt;You need to add the path to the existing PATH&lt;BR /&gt;$ORACLE_HOME/procob/demo    &lt;BR /&gt;$ORACLE_HOME/proc/lib    &lt;BR /&gt;&lt;BR /&gt;Thanks</description>
      <pubDate>Fri, 28 Feb 2003 10:42:28 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/make-cannot-open-procob-mk-stop/m-p/2915626#M934080</guid>
      <dc:creator>T G Manikandan</dc:creator>
      <dc:date>2003-02-28T10:42:28Z</dc:date>
    </item>
    <item>
      <title>Re: Make: Cannot open procob.mk.  Stop.</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/make-cannot-open-procob-mk-stop/m-p/2915627#M934081</link>
      <description>I've done it but what is wrong with procob18?&lt;BR /&gt;&lt;BR /&gt;$ make -f demo_procob18.mk build EXE=sample2 COBS=sample2.cob &amp;gt; link.lib&lt;BR /&gt;sh: procob18:  not found.&lt;BR /&gt;&lt;BR /&gt;Stop.&lt;BR /&gt;</description>
      <pubDate>Fri, 28 Feb 2003 10:57:08 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/make-cannot-open-procob-mk-stop/m-p/2915627#M934081</guid>
      <dc:creator>Engo Armand-Blaise</dc:creator>
      <dc:date>2003-02-28T10:57:08Z</dc:date>
    </item>
    <item>
      <title>Re: Make: Cannot open procob.mk.  Stop.</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/make-cannot-open-procob-mk-stop/m-p/2915628#M934082</link>
      <description>procob18 should be in $ORACLE_HOME/bin.  If is it not then it has not been installed.  If it is then you need to check your PATH.</description>
      <pubDate>Fri, 28 Feb 2003 11:06:02 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/make-cannot-open-procob-mk-stop/m-p/2915628#M934082</guid>
      <dc:creator>Ian Lochray</dc:creator>
      <dc:date>2003-02-28T11:06:02Z</dc:date>
    </item>
    <item>
      <title>Re: Make: Cannot open procob.mk.  Stop.</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/make-cannot-open-procob-mk-stop/m-p/2915629#M934083</link>
      <description>procob18 is an executable.If that is not there then the option of installating the pre-compilers was not selected.&lt;BR /&gt;&lt;BR /&gt;Run the Installer again to choose that specific product.&lt;BR /&gt;&lt;BR /&gt;Thanks</description>
      <pubDate>Fri, 28 Feb 2003 11:45:58 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/make-cannot-open-procob-mk-stop/m-p/2915629#M934083</guid>
      <dc:creator>T G Manikandan</dc:creator>
      <dc:date>2003-02-28T11:45:58Z</dc:date>
    </item>
    <item>
      <title>Re: Make: Cannot open procob.mk.  Stop.</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/make-cannot-open-procob-mk-stop/m-p/2915630#M934084</link>
      <description>Sorry to be back late.&lt;BR /&gt;&lt;BR /&gt;The "procob18" is well installed in the $ORACLE_HOME/bin.&lt;BR /&gt;&lt;BR /&gt;The following command gives me this message :&lt;BR /&gt;&lt;BR /&gt;$ make -f procob.mk build COBS="sample1.cob sample2.cob" EXE=sample add PCCFLAGS &amp;gt; link.lib &lt;BR /&gt;&lt;BR /&gt;========================================&lt;BR /&gt;/usr/lib/dld.sl: Can't find path for shared library: libwtc8.sl&lt;BR /&gt;/usr/lib/dld.sl: No such file or directory&lt;BR /&gt;sh: 27983 Abort(coredump)&lt;BR /&gt;&lt;BR /&gt;Stop&lt;BR /&gt;==============================================&lt;BR /&gt;&lt;BR /&gt;cyb_hpux [ /cyborg/app/oracle/product/817/precomp/demo/procob ] $ more link.lib&lt;BR /&gt;        procob18  iname=sample2.pco&lt;BR /&gt;*** Error exit code 134&lt;BR /&gt;==============================================&lt;BR /&gt;What do you suggest me?&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 28 Feb 2003 12:40:41 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/make-cannot-open-procob-mk-stop/m-p/2915630#M934084</guid>
      <dc:creator>Engo Armand-Blaise</dc:creator>
      <dc:date>2003-02-28T12:40:41Z</dc:date>
    </item>
    <item>
      <title>Re: Make: Cannot open procob.mk.  Stop.</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/make-cannot-open-procob-mk-stop/m-p/2915631#M934085</link>
      <description>hello,&lt;BR /&gt;&lt;BR /&gt;Make sure of the following:&lt;BR /&gt;$LD_LIBRARY_PATH - includes $ORACLE_HOME/lib64, but not $ORACLE_HOME/lib &lt;BR /&gt;$SHLIB_PATH      - includes $ORACLE_HOME/lib, but not $ORACLE_HOME/lib64 &lt;BR /&gt;&lt;BR /&gt;And retry...&lt;BR /&gt;&lt;BR /&gt;Hope this helps!&lt;BR /&gt;&lt;BR /&gt;Best Regards&lt;BR /&gt;Yogeeraj</description>
      <pubDate>Fri, 28 Feb 2003 13:33:25 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/make-cannot-open-procob-mk-stop/m-p/2915631#M934085</guid>
      <dc:creator>Yogeeraj_1</dc:creator>
      <dc:date>2003-02-28T13:33:25Z</dc:date>
    </item>
    <item>
      <title>Re: Make: Cannot open procob.mk.  Stop.</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/make-cannot-open-procob-mk-stop/m-p/2915632#M934086</link>
      <description>hi again,&lt;BR /&gt;&lt;BR /&gt;are you running HP-UX Oracle 64-bits or 32-bits&lt;BR /&gt;&lt;BR /&gt;also, your HP-UX 11?&lt;BR /&gt;&lt;BR /&gt;please let us know&lt;BR /&gt;&lt;BR /&gt;Regards&lt;BR /&gt;Yogeeraj</description>
      <pubDate>Fri, 28 Feb 2003 13:36:33 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/make-cannot-open-procob-mk-stop/m-p/2915632#M934086</guid>
      <dc:creator>Yogeeraj_1</dc:creator>
      <dc:date>2003-02-28T13:36:33Z</dc:date>
    </item>
    <item>
      <title>Re: Make: Cannot open procob.mk.  Stop.</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/make-cannot-open-procob-mk-stop/m-p/2915633#M934087</link>
      <description>I'm running HP B11 with 32 bits... So the make file to create is not successful. This is the profile's path I have :&lt;BR /&gt; ORACLE_HOME=/cyborg/app/oracle/product/817   ; export ORACLE_HOME&lt;BR /&gt;        LD_LIBRARY_PATH=$ORACLE_HOME/lib:$LD_LIBRARY_PATH ; export LD_LIBRARY_PATH&lt;BR /&gt;PATH=$PATH:$ORACLE_HOME/bin ; export PATH&lt;BR /&gt;# Set Cobol Environment&lt;BR /&gt;&lt;BR /&gt;LPATH=/usr/lib:/opt/cobol/cobdir; export LPATH&lt;BR /&gt;        SHLIB_PATH=/opt/cobol/cobdir/coblib             ; export SHLIB_PATH&lt;BR /&gt;&lt;BR /&gt;=============================================&lt;BR /&gt;&lt;BR /&gt;I hope this will help.&lt;BR /&gt;&lt;BR /&gt;Thanks.&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Mon, 03 Mar 2003 08:19:17 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/make-cannot-open-procob-mk-stop/m-p/2915633#M934087</guid>
      <dc:creator>Engo Armand-Blaise</dc:creator>
      <dc:date>2003-03-03T08:19:17Z</dc:date>
    </item>
    <item>
      <title>Re: Make: Cannot open procob.mk.  Stop.</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/make-cannot-open-procob-mk-stop/m-p/2915634#M934088</link>
      <description>As Yogeeraj said, make sure that $SHLIB_PATH - includes $ORACLE_HOME/lib, but not $ORACLE_HOME/lib64.  Currently it only contains the COBOL shared libraries.</description>
      <pubDate>Mon, 03 Mar 2003 08:37:35 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/make-cannot-open-procob-mk-stop/m-p/2915634#M934088</guid>
      <dc:creator>Ian Lochray</dc:creator>
      <dc:date>2003-03-03T08:37:35Z</dc:date>
    </item>
    <item>
      <title>Re: Make: Cannot open procob.mk.  Stop.</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/make-cannot-open-procob-mk-stop/m-p/2915635#M934089</link>
      <description>I've done the same but there is no change on it :&lt;BR /&gt;&lt;BR /&gt;LD_LIBRARY_PATH=$ORACLE_HOME/lib:$LD_LIBRARY_PATH ; export LD_LIBRARY_PATH&lt;BR /&gt;&lt;BR /&gt; LPATH=/usr/lib:/opt/cobol/cobdir                ; export LPATH&lt;BR /&gt;               SHLIB_PATH=/opt/cobol/cobdir/coblib:$ORACLE_HOME/lib; export SHLIB_PATH&lt;BR /&gt;        PATH=$PATH:/usr/bin:/usr/ccs/bin:/opt/cobol     ; export PATH&lt;BR /&gt;        PATH=$PATH:/opt/cobol/bin:/opt/cobol/bin        ; export PATH&lt;BR /&gt;        PATH=$PATH:$LPATH:$SHLIB_PATH                   ; export PATH&lt;BR /&gt;        PATH=$PATH:$ORACLE_HOME/precomp/demo/procob     ; export PATH&lt;BR /&gt;        PATH=$PATH:$ORACLE_HOME/precomp/lib             ; export PATH&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Mon, 03 Mar 2003 09:01:17 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/make-cannot-open-procob-mk-stop/m-p/2915635#M934089</guid>
      <dc:creator>Engo Armand-Blaise</dc:creator>
      <dc:date>2003-03-03T09:01:17Z</dc:date>
    </item>
    <item>
      <title>Re: Make: Cannot open procob.mk.  Stop.</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/make-cannot-open-procob-mk-stop/m-p/2915636#M934090</link>
      <description>Have you got ORACLE_HOME set correctly in your environment?  Also, do an ls -l $ORACLE_HOME/lib/libwtc8.sl to check it is present and readable.</description>
      <pubDate>Mon, 03 Mar 2003 09:23:13 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/make-cannot-open-procob-mk-stop/m-p/2915636#M934090</guid>
      <dc:creator>Ian Lochray</dc:creator>
      <dc:date>2003-03-03T09:23:13Z</dc:date>
    </item>
    <item>
      <title>Re: Make: Cannot open procob.mk.  Stop.</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/make-cannot-open-procob-mk-stop/m-p/2915637#M934091</link>
      <description>Can you cd to $ORACLE_HOME/bin and do a &lt;BR /&gt;chatr procob18 | more&lt;BR /&gt;&lt;BR /&gt;The output should show that SHLIB_PATH is enabled e.g.&lt;BR /&gt;&lt;BR /&gt;procob18: &lt;BR /&gt;         shared executable &lt;BR /&gt;         shared library dynamic path search:&lt;BR /&gt;             SHLIB_PATH     enabled   first</description>
      <pubDate>Mon, 03 Mar 2003 09:32:11 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/make-cannot-open-procob-mk-stop/m-p/2915637#M934091</guid>
      <dc:creator>Ian Lochray</dc:creator>
      <dc:date>2003-03-03T09:32:11Z</dc:date>
    </item>
    <item>
      <title>Re: Make: Cannot open procob.mk.  Stop.</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/make-cannot-open-procob-mk-stop/m-p/2915638#M934092</link>
      <description>This what I have :&lt;BR /&gt;&lt;BR /&gt;$ echo $ORACLE_HOME&lt;BR /&gt;/cyborg/app/oracle/product/817&lt;BR /&gt;$ l -ltr $ORACLE_HOME/lib/libwtc8.sl&lt;BR /&gt;-rwxr-xr-x   1 oracle     dba          12288 Aug 25  2000 /cyborg/app/oracle/pro&lt;BR /&gt;duct/817/lib/libwtc8.sl&lt;BR /&gt;==============================================&lt;BR /&gt;&lt;BR /&gt;Must I obliged to re-install the precompiler or not?&lt;BR /&gt;</description>
      <pubDate>Mon, 03 Mar 2003 09:33:22 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/make-cannot-open-procob-mk-stop/m-p/2915638#M934092</guid>
      <dc:creator>Engo Armand-Blaise</dc:creator>
      <dc:date>2003-03-03T09:33:22Z</dc:date>
    </item>
    <item>
      <title>Re: Make: Cannot open procob.mk.  Stop.</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/make-cannot-open-procob-mk-stop/m-p/2915639#M934093</link>
      <description>ls -ltr procob18&lt;BR /&gt;-rwxr-xr-x   1 oracle     dba        11751424 Aug 25  2000 procob18&lt;BR /&gt;cyb_hpux [ /cyborg/app/oracle/product/817/bin ] $ chatr procob18|more&lt;BR /&gt;chatr(warning): dl_header_ext.size != sizeof(dl_header_ext). Please update your&lt;BR /&gt;version of the linker.&lt;BR /&gt;procob18:&lt;BR /&gt;         shared executable&lt;BR /&gt;         shared library dynamic path search:&lt;BR /&gt;             SHLIB_PATH     enabled   first&lt;BR /&gt;             embedded path  disabled  second Not Defined&lt;BR /&gt;         shared library list:&lt;BR /&gt;             dynamic   /project/hpux/817/src_000811_cunnitha/lib//libclntsh.sl.8&lt;BR /&gt;.0&lt;BR /&gt;             dynamic   /project/hpux/817/src_000811_cunnitha/lib//libwtc8.sl&lt;BR /&gt;             dynamic   /usr/lib/librt.2&lt;BR /&gt;             dynamic   /usr/lib/libpthread.1&lt;BR /&gt;             dynamic   /usr/lib/libnss_dns.1&lt;BR /&gt;             dynamic   /usr/lib/libdld.2&lt;BR /&gt;             dynamic   /usr/lib/libm.2&lt;BR /&gt;             dynamic   /usr/lib/libc.2 ........&lt;BR /&gt;============================================&lt;BR /&gt;&lt;BR /&gt;Please assist me.&lt;BR /&gt;&lt;BR /&gt;Engo.</description>
      <pubDate>Mon, 03 Mar 2003 09:40:44 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/make-cannot-open-procob-mk-stop/m-p/2915639#M934093</guid>
      <dc:creator>Engo Armand-Blaise</dc:creator>
      <dc:date>2003-03-03T09:40:44Z</dc:date>
    </item>
    <item>
      <title>Re: Make: Cannot open procob.mk.  Stop.</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/make-cannot-open-procob-mk-stop/m-p/2915640#M934094</link>
      <description>Try relinking procob18.  To do this log on as oracle, cp $ORACLE_HOME/bin/procob18 $ORACLE_HOME/bin/procob18.bak, cd $ORACLE_HOME/precomp/lib, make -f ins_precomp.mk procob18.</description>
      <pubDate>Mon, 03 Mar 2003 10:01:40 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/make-cannot-open-procob-mk-stop/m-p/2915640#M934094</guid>
      <dc:creator>Ian Lochray</dc:creator>
      <dc:date>2003-03-03T10:01:40Z</dc:date>
    </item>
    <item>
      <title>Re: Make: Cannot open procob.mk.  Stop.</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/make-cannot-open-procob-mk-stop/m-p/2915641#M934095</link>
      <description>This is what I have when trying to relink "procob18" :&lt;BR /&gt; make -f ins_precomp.mk&lt;BR /&gt;  procob18&lt;BR /&gt;Linking procob18&lt;BR /&gt;/usr/ccs/bin/ld: Can't find library: "clntsh"&lt;BR /&gt;*** Error exit code 1&lt;BR /&gt;&lt;BR /&gt;Stop.&lt;BR /&gt;</description>
      <pubDate>Mon, 03 Mar 2003 11:36:06 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/make-cannot-open-procob-mk-stop/m-p/2915641#M934095</guid>
      <dc:creator>Engo Armand-Blaise</dc:creator>
      <dc:date>2003-03-03T11:36:06Z</dc:date>
    </item>
    <item>
      <title>Re: Make: Cannot open procob.mk.  Stop.</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/make-cannot-open-procob-mk-stop/m-p/2915642#M934096</link>
      <description>This seems to be very similar to your original problem - libraries in $ORACLE_HOME/lib are not being picked up.  Let's have a look at the link command being used.&lt;BR /&gt;DO the same as before except, take a copy of ins_precomp.mak and edit the copy.  FInd the line that starts "$(LOC_PROCOB18):" and delete the following line "$(SILENT)$(ECHO) "Linking $@"; \".  You can then relink procob18 specifying the new file instead of ins_precomp.mak.  This will show you the link command being used which should tell us where it is all going wrong.&lt;BR /&gt;Can you please post the output along with the output of:&lt;BR /&gt;echo $ORACLE_HOME&lt;BR /&gt;env | grep LIB&lt;BR /&gt;ls -l $ORACLE_HOME/lib</description>
      <pubDate>Mon, 03 Mar 2003 11:56:19 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/make-cannot-open-procob-mk-stop/m-p/2915642#M934096</guid>
      <dc:creator>Ian Lochray</dc:creator>
      <dc:date>2003-03-03T11:56:19Z</dc:date>
    </item>
    <item>
      <title>Re: Make: Cannot open procob.mk.  Stop.</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/make-cannot-open-procob-mk-stop/m-p/2915643#M934097</link>
      <description />
      <pubDate>Mon, 03 Mar 2003 12:26:03 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/make-cannot-open-procob-mk-stop/m-p/2915643#M934097</guid>
      <dc:creator>Engo Armand-Blaise</dc:creator>
      <dc:date>2003-03-03T12:26:03Z</dc:date>
    </item>
  </channel>
</rss>

