<?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: Problems with make in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/problems-with-make/m-p/4888922#M846465</link>
    <description>Not a problem, also not the answer (I think).&lt;BR /&gt;&lt;BR /&gt;$ ll -d .&lt;BR /&gt;drwxrwxrwx   3 lc         users         2048 Mar  2 12:47 .&lt;BR /&gt;$ getacl .&lt;BR /&gt;# file: .&lt;BR /&gt;# owner: lc&lt;BR /&gt;# group: users&lt;BR /&gt;user::rwx&lt;BR /&gt;group::rwx&lt;BR /&gt;class:rwx&lt;BR /&gt;other:rwx&lt;BR /&gt;$ &lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;After posting the last message above, I did change the directory permissions from 775 to 777, with no change is results.  &lt;BR /&gt;&lt;BR /&gt;Also overlooked above, is that the plot_pdaps.o file does get updated.  After a make clean, all of the object files (*.o) do get updated, it's just the final cc to generate the executable that does not run.&lt;BR /&gt;&lt;BR /&gt;I do wish to say thanks for the help so far.  At least it does not seem to be something simple I was just overlooking.</description>
    <pubDate>Wed, 02 Mar 2005 13:20:00 GMT</pubDate>
    <dc:creator>Tom Henning</dc:creator>
    <dc:date>2005-03-02T13:20:00Z</dc:date>
    <item>
      <title>Problems with make</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/problems-with-make/m-p/4888911#M846454</link>
      <description>Hello all. I seem to be having a problme with make, but after trying everything I can think of I cannot find the problem. &lt;BR /&gt;&lt;BR /&gt;We have recently had a co-worker leave us (past away, not just quit).  We asre trying to pick up on his work and figure out his code (we are a small shop where the engineers generally write their own code).  In looking at one program, we make a small change to the code, type make and make does not compile the solution.  No error messages, just no results.&lt;BR /&gt;&lt;BR /&gt;I cannot see any problems with the makefile, but something is going on.  All of the files are stil owned by the original user, but group write permissions are on and we can write into the directory.&lt;BR /&gt;&lt;BR /&gt;Makefile and sample compile attempt follow:&lt;BR /&gt;&lt;BR /&gt;$ ll plotpdaps&lt;BR /&gt;-rwxrwxrwx   1 lc         users       230048 Jul 16  2004 plotpdaps&lt;BR /&gt;$ make plotpdaps&lt;BR /&gt;        cc  pdaps_plot.o counts_to_eu.o read_head.o parse_pdaps_gms.o bcdtosec.o sectoirigstr.o draw_tics.o sig_fig.o getlocaltime.o irigstrtobcd.o getstring.o calctime.o totaltime.o conv_time_args.o decimate.o-o plotpdaps -I/usr/include/X11R5/X11 -I/opt/graphics/starbase/include -L/opt/graphics/common/lib -L/usr/lib/X11R5  -L/opt/graphics/starbase/lib -lXwindow -lXt -lX11 -lhpgfx -lXhp11  -lddCADplt -lm -ldld &lt;BR /&gt;$ ll plotpdaps&lt;BR /&gt;-rwxrwxrwx   1 lc         users       230048 Jul 16  2004 plotpdaps&lt;BR /&gt;$  cat Makefile&lt;BR /&gt; &lt;BR /&gt;# compile the pdaps_plot program&lt;BR /&gt;# For includes and libs necessary for starbase, see "Graphics&lt;BR /&gt;# Administration Guide HP-UX 10.x".&lt;BR /&gt; &lt;BR /&gt;CCOPTS = -Ae -g -c -Dhp9000&lt;BR /&gt;LIBES = -L/opt/graphics/common/lib -L/usr/lib/X11R5 \&lt;BR /&gt;        -L/opt/graphics/starbase/lib -lXwindow -lXt -lX11 -lhpgfx -lXhp11 \&lt;BR /&gt;        -lddCADplt -lm -ldld &lt;BR /&gt;INCS = -I/usr/include/X11R5/X11 -I/opt/graphics/starbase/include&lt;BR /&gt;OBJECTS = pdaps_plot.o counts_to_eu.o read_head.o parse_pdaps_gms.o\&lt;BR /&gt;          bcdtosec.o sectoirigstr.o draw_tics.o sig_fig.o getlocaltime.o\&lt;BR /&gt;          irigstrtobcd.o getstring.o calctime.o totaltime.o conv_time_args.o\&lt;BR /&gt;          decimate.o&lt;BR /&gt; &lt;BR /&gt;plotpdaps : $(OBJECTS)&lt;BR /&gt;        cc  $(OBJECTS)-o plotpdaps $(INCS) $(LIBES)&lt;BR /&gt; &lt;BR /&gt;printpdaps : $(OBJECTS)&lt;BR /&gt;        cc -o printpdaps $(OBJECTS) $(INCS) $(LIBES)&lt;BR /&gt; &lt;BR /&gt;pdaps_plot.o : pdaps_plot.c&lt;BR /&gt;        cc $(CCOPTS) pdaps_plot.c&lt;BR /&gt; &lt;BR /&gt;counts_to_eu.o : counts_to_eu.c&lt;BR /&gt;        cc $(CCOPTS) counts_to_eu.c&lt;BR /&gt; &lt;BR /&gt;read_head.o : read_head.c&lt;BR /&gt;        cc $(CCOPTS) read_head.c&lt;BR /&gt; &lt;BR /&gt;parse_pdaps_gms.o : parse_pdaps_gms.c&lt;BR /&gt;        cc $(CCOPTS) parse_pdaps_gms.c&lt;BR /&gt; &lt;BR /&gt;draw_tics.o : draw_tics.c&lt;BR /&gt;        cc $(CCOPTS) draw_tics.c&lt;BR /&gt; &lt;BR /&gt;bcdtosec.o : bcdtosec.c&lt;BR /&gt;        cc $(CCOPTS) bcdtosec.c&lt;BR /&gt; &lt;BR /&gt;sectoirigstr.o : sectoirigstr.c&lt;BR /&gt;        cc $(CCOPTS) sectoirigstr.c&lt;BR /&gt; &lt;BR /&gt;sig_fig.o : sig_fig.c&lt;BR /&gt;        cc $(CCOPTS) sig_fig.c&lt;BR /&gt; &lt;BR /&gt;getlocaltime.o : getlocaltime.c&lt;BR /&gt;        cc $(CCOPTS) getlocaltime.c&lt;BR /&gt; &lt;BR /&gt;irigstrtobcd.o : irigstrtobcd.c&lt;BR /&gt;        cc $(CCOPTS) irigstrtobcd.c&lt;BR /&gt; &lt;BR /&gt;getstring.o : getstring.c&lt;BR /&gt;        cc $(CCOPTS) getstring.c&lt;BR /&gt; &lt;BR /&gt;calctime.o : calctime.c&lt;BR /&gt;        cc $(CCOPTS) calctime.c&lt;BR /&gt; &lt;BR /&gt;totaltime.o : totaltime.c&lt;BR /&gt;        cc $(CCOPTS) totaltime.c&lt;BR /&gt; &lt;BR /&gt;conv_time_args.o : conv_time_args.c&lt;BR /&gt;        cc $(CCOPTS) conv_time_args.c&lt;BR /&gt; &lt;BR /&gt;decimate.o : decimate.c&lt;BR /&gt;        cc $(CCOPTS) decimate.c&lt;BR /&gt; &lt;BR /&gt;clean :&lt;BR /&gt;        rm -f *.o&lt;BR /&gt;$ &lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Any help would be nice.</description>
      <pubDate>Wed, 02 Mar 2005 08:17:55 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/problems-with-make/m-p/4888911#M846454</guid>
      <dc:creator>Tom Henning</dc:creator>
      <dc:date>2005-03-02T08:17:55Z</dc:date>
    </item>
    <item>
      <title>Re: Problems with make</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/problems-with-make/m-p/4888912#M846455</link>
      <description>Hi have you tried to su - &lt;THIS user=""&gt; and run the make command. May be the user's environment affects the way this is run ?&lt;BR /&gt;&lt;BR /&gt;Regards&lt;BR /&gt;Jean-Luc&lt;/THIS&gt;</description>
      <pubDate>Wed, 02 Mar 2005 08:25:18 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/problems-with-make/m-p/4888912#M846455</guid>
      <dc:creator>Jean-Luc Oudart</dc:creator>
      <dc:date>2005-03-02T08:25:18Z</dc:date>
    </item>
    <item>
      <title>Re: Problems with make</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/problems-with-make/m-p/4888913#M846456</link>
      <description>I see it -&lt;BR /&gt;&lt;BR /&gt;you need a space after the "$(OBJECTS)" in the next line:&lt;BR /&gt;cc $(OBJECTS)-o plotpdaps $(INCS) $(LIBES)&lt;BR /&gt;&lt;BR /&gt;should be:&lt;BR /&gt;cc $(OBJECTS) -o plotpdaps $(INCS) $(LIBES)&lt;BR /&gt;&lt;BR /&gt;If you look in the output of the make command you can see:&lt;BR /&gt;decimate.o-o plotpdap &lt;BR /&gt;should have been:&lt;BR /&gt;decimate.o -o plotpdap</description>
      <pubDate>Wed, 02 Mar 2005 08:33:37 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/problems-with-make/m-p/4888913#M846456</guid>
      <dc:creator>TwoProc</dc:creator>
      <dc:date>2005-03-02T08:33:37Z</dc:date>
    </item>
    <item>
      <title>Re: Problems with make</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/problems-with-make/m-p/4888914#M846457</link>
      <description>John:&lt;BR /&gt;&lt;BR /&gt;Good eyes, but that did produce an error message, once I did the suggested /bin/su - &lt;USERNAME&gt; from a root shell (too lazy to change the old user's password right now).  If you look at the original posting, no error message was produced at all while I was under my user ID.  Once that *.o-o problem was corrected, the same thing happened.  &lt;BR /&gt;&lt;BR /&gt;I did do the suggested su - to the old user's name, and this time it worked without any problems.  Begining to look like an environmental or permissions problme, so I'll keep looking in those directions.&lt;BR /&gt;&lt;BR /&gt;Thanks for the help so far.&lt;/USERNAME&gt;</description>
      <pubDate>Wed, 02 Mar 2005 08:38:19 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/problems-with-make/m-p/4888914#M846457</guid>
      <dc:creator>Tom Henning</dc:creator>
      <dc:date>2005-03-02T08:38:19Z</dc:date>
    </item>
    <item>
      <title>Re: Problems with make</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/problems-with-make/m-p/4888915#M846458</link>
      <description>Telling us the error message might help...&lt;BR /&gt;Also look for ACL's, for instance on the directory. Or if all objects are readable.&lt;BR /&gt;</description>
      <pubDate>Wed, 02 Mar 2005 09:38:06 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/problems-with-make/m-p/4888915#M846458</guid>
      <dc:creator>Elmar P. Kolkman</dc:creator>
      <dc:date>2005-03-02T09:38:06Z</dc:date>
    </item>
    <item>
      <title>Re: Problems with make</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/problems-with-make/m-p/4888916#M846459</link>
      <description>Any alias for cc ?&lt;BR /&gt;&lt;BR /&gt;Regards&lt;BR /&gt;Jean-Luc</description>
      <pubDate>Wed, 02 Mar 2005 10:00:48 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/problems-with-make/m-p/4888916#M846459</guid>
      <dc:creator>Jean-Luc Oudart</dc:creator>
      <dc:date>2005-03-02T10:00:48Z</dc:date>
    </item>
    <item>
      <title>Re: Problems with make</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/problems-with-make/m-p/4888917#M846460</link>
      <description>If you post thr errors you are seeing, it would make things much easier. Also because HTML eats whitespace, it's especially difficult to know if there is a syntax error. Unlike almost all other UNIX utilities, make is especially sensitive to the placement of &lt;TABS&gt;.&lt;BR /&gt;&lt;BR /&gt;Check all of your dependency rules for this exact syntax:&lt;BR /&gt;&lt;BR /&gt;plotpdaps : $(OBJECTS)&lt;BR /&gt;&lt;TAB&gt;cc $(OBJECTS) -o plotpdaps $(INCS) $(LIBES)&lt;BR /&gt;&lt;TAB&gt;next step&lt;BR /&gt;&lt;TAB&gt;next step&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/TAB&gt;&lt;/TAB&gt;&lt;/TAB&gt;&lt;/TABS&gt;</description>
      <pubDate>Wed, 02 Mar 2005 10:11:02 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/problems-with-make/m-p/4888917#M846460</guid>
      <dc:creator>A. Clay Stephenson</dc:creator>
      <dc:date>2005-03-02T10:11:02Z</dc:date>
    </item>
    <item>
      <title>Re: Problems with make</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/problems-with-make/m-p/4888918#M846461</link>
      <description>I posted the exact results from my login running the make command.  No errors provided, no output past what I posted, and not even the "normal" warning about this not runnng on a 1.1 processor.  It is acting like make is simply echo'ing the command out to the terminal and not executing it.  I am sorry, should have made this point more carefully in my first post.&lt;BR /&gt;&lt;BR /&gt;The cc command is not aliased on the working login or the departed user's login.  The two logins have simular paths through the top 15 directories (with one minor exception on mine, referencing an elm directory first).&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;The makefile has a &lt;TAB&gt; as specified above.&lt;BR /&gt;&lt;BR /&gt;One interesting thing I did notice, is that when I tried the make as me and the typo above "decimate.o-o" was in the makefile, I received no error about this (as in the original post). But when I tried the su as suggested by Jean-Luc, the make failed with an error message about this exact point.  I fixed the typo (introduced in my trouble shoot attempts accidently), as the departed user the make command worked. &lt;BR /&gt;&lt;BR /&gt;Interesting.&lt;BR /&gt;&lt;BR /&gt;Oops, should have said.  This is a 11.11 box, with C/ANSI C and developer's toolkit installed.  This is also happening on a 10.20 box (with C/ANSI C installed).  This is about the last thing to get switched before we switch to 11.11 completely.&lt;BR /&gt;&lt;BR /&gt;Any other suggestions? Or information requests.&lt;BR /&gt;&lt;/TAB&gt;</description>
      <pubDate>Wed, 02 Mar 2005 11:21:21 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/problems-with-make/m-p/4888918#M846461</guid>
      <dc:creator>Tom Henning</dc:creator>
      <dc:date>2005-03-02T11:21:21Z</dc:date>
    </item>
    <item>
      <title>Re: Problems with make</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/problems-with-make/m-p/4888919#M846462</link>
      <description>I'm beginning to think that you really have no problem other than confused datestamps. I suggest that you do a rm *.o and then make. At the very least, you should then see it make some of the objects and stop where the problem is.&lt;BR /&gt;</description>
      <pubDate>Wed, 02 Mar 2005 11:30:43 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/problems-with-make/m-p/4888919#M846462</guid>
      <dc:creator>A. Clay Stephenson</dc:creator>
      <dc:date>2005-03-02T11:30:43Z</dc:date>
    </item>
    <item>
      <title>Re: Problems with make</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/problems-with-make/m-p/4888920#M846463</link>
      <description>OKay. Let me try to more fully explain the problem.  When I log in as myself, in the proper directory, I get the following results (directly cut and pasted into this message, nothing left out):&lt;BR /&gt;&lt;BR /&gt;--------------------------------------------&lt;BR /&gt;$ touch pdaps_plot.c ; ll pdaps_plot.c plotpdaps      &lt;BR /&gt;-rw-rw-r--   1 lc         users        40281 Mar  2 12:07 pdaps_plot.c&lt;BR /&gt;-rwxrwxrwx   1 lc         users       184944 Mar  2 08:37 plotpdaps&lt;BR /&gt;$ make plotpdaps&lt;BR /&gt;        cc -Ae -g -c -Dhp9000 pdaps_plot.c&lt;BR /&gt;        cc  pdaps_plot.o counts_to_eu.o read_head.o parse_pdaps_gms.o bcdtosec.o sectoirigstr.o draw_tics.o sig_fig.o getlocaltime.o irigstrtobcd.o getstring.o calctime.o totaltime.o conv_time_args.o decimate.o -o plotpdaps -I/usr/include/X11R5/X11 -I/opt/graphics/starbase/include -L/opt/graphics/common/lib -L/usr/lib/X11R5  -L/opt/graphics/starbase/lib -lXwindow -lXt -lX11 -lhpgfx -lXhp11  -lddCADplt -lm -ldld &lt;BR /&gt;$ ll pdaps_plot.c plotpdaps                     &lt;BR /&gt;-rw-rw-r--   1 lc         users        40281 Mar  2 12:07 pdaps_plot.c&lt;BR /&gt;-rwxrwxrwx   1 lc         users       184944 Mar  2 08:37 plotpdaps&lt;BR /&gt;$ &lt;BR /&gt;--------------------------------------------&lt;BR /&gt;As can be seen from this snippett, the date stamps on the single source file touched are later than the resultant program file both before and after the make command is issued.&lt;BR /&gt;&lt;BR /&gt;Now, I do a:&lt;BR /&gt;$ sudo /bin/sh - lc  #lc is the departed user's ID.&lt;BR /&gt;$ id&lt;BR /&gt;uid=106(lc) gid=104(wavies) groups=102(mysql)&lt;BR /&gt;$&lt;BR /&gt;&lt;BR /&gt;Notice that this user is not even in the same group as the files are, but he is the owner of the files and directories.&lt;BR /&gt;&lt;BR /&gt;Repeating the above test commands:&lt;BR /&gt;&lt;BR /&gt;--------------------------------------------&lt;BR /&gt;$ touch pdaps_plot.c ; ll pdaps_plot.c plotpdaps&lt;BR /&gt;-rw-rw-r--   1 lc         users        40281 Mar  2 12:13 pdaps_plot.c&lt;BR /&gt;-rwxrwxrwx   1 lc         users       184944 Mar  2 08:37 plotpdaps&lt;BR /&gt;$ make&lt;BR /&gt;        cc -Ae -g -c -Dhp9000 pdaps_plot.c&lt;BR /&gt;        cc  pdaps_plot.o counts_to_eu.o read_head.o parse_pdaps_gms.o bcdtosec.o sectoirigstr.o draw_tics.o sig_fig.o getlocaltime.o irigstrtobcd.o getstring.o calctime.o totaltime.o conv_time_args.o decimate.o -o plotpdaps -I/usr/include/X11R5/X11 -I/opt/graphics/starbase/include -L/opt/graphics/common/lib -L/usr/lib/X11R5  -L/opt/graphics/starbase/lib -lXwindow -lXt -lX11 -lhpgfx -lXhp11  -lddCADplt -lm -ldld &lt;BR /&gt;/usr/ccs/bin/ld: (Warning) At least one PA 2.0 object file (pdaps_plot.o) was detected. The linked output may not run on a PA 1.x system.&lt;BR /&gt;$ ll pdaps_plot.c plotpdaps                     &lt;BR /&gt;-rw-rw-r--   1 lc         users        40281 Mar  2 12:13 pdaps_plot.c&lt;BR /&gt;-rwxrwxrwx   1 lc         users       184944 Mar  2 12:13 plotpdaps&lt;BR /&gt;$&lt;BR /&gt;---------------------------------------------&lt;BR /&gt;In this second test run, as the owner of the files, you can see that the make does what it is supposed to do, and even optputs the "normal" PA 1.x warning message that is not see in the first run under my normal user ID.  This is what is making me crazy.  My normal ID has permissions (the directory is:&lt;BR /&gt;&lt;BR /&gt;$ ll -d .&lt;BR /&gt;drwxrwxr-x   3 lc         users         2048 Mar  2 12:13 .&lt;BR /&gt;$&lt;BR /&gt;&lt;BR /&gt;My normal ID is a member of the users group.&lt;BR /&gt;&lt;BR /&gt;Do not think it matters, but the lc user ID is now locked out from normal login &lt;DEACTIVATED&gt;.  Only root can su to him now.&lt;BR /&gt;&lt;BR /&gt;Back to rereading the man page for make again.&lt;/DEACTIVATED&gt;</description>
      <pubDate>Wed, 02 Mar 2005 12:21:44 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/problems-with-make/m-p/4888920#M846463</guid>
      <dc:creator>Tom Henning</dc:creator>
      <dc:date>2005-03-02T12:21:44Z</dc:date>
    </item>
    <item>
      <title>Re: Problems with make</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/problems-with-make/m-p/4888921#M846464</link>
      <description>This is behaving like the sticky bit is set on the directory although ll doesn't indicate it. It's also possible that ACL's are in play. Assuming this directory is in a vxfs filesystem, do a getacl on this directory.</description>
      <pubDate>Wed, 02 Mar 2005 12:41:52 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/problems-with-make/m-p/4888921#M846464</guid>
      <dc:creator>A. Clay Stephenson</dc:creator>
      <dc:date>2005-03-02T12:41:52Z</dc:date>
    </item>
    <item>
      <title>Re: Problems with make</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/problems-with-make/m-p/4888922#M846465</link>
      <description>Not a problem, also not the answer (I think).&lt;BR /&gt;&lt;BR /&gt;$ ll -d .&lt;BR /&gt;drwxrwxrwx   3 lc         users         2048 Mar  2 12:47 .&lt;BR /&gt;$ getacl .&lt;BR /&gt;# file: .&lt;BR /&gt;# owner: lc&lt;BR /&gt;# group: users&lt;BR /&gt;user::rwx&lt;BR /&gt;group::rwx&lt;BR /&gt;class:rwx&lt;BR /&gt;other:rwx&lt;BR /&gt;$ &lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;After posting the last message above, I did change the directory permissions from 775 to 777, with no change is results.  &lt;BR /&gt;&lt;BR /&gt;Also overlooked above, is that the plot_pdaps.o file does get updated.  After a make clean, all of the object files (*.o) do get updated, it's just the final cc to generate the executable that does not run.&lt;BR /&gt;&lt;BR /&gt;I do wish to say thanks for the help so far.  At least it does not seem to be something simple I was just overlooking.</description>
      <pubDate>Wed, 02 Mar 2005 13:20:00 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/problems-with-make/m-p/4888922#M846465</guid>
      <dc:creator>Tom Henning</dc:creator>
      <dc:date>2005-03-02T13:20:00Z</dc:date>
    </item>
    <item>
      <title>Re: Problems with make</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/problems-with-make/m-p/4888923#M846466</link>
      <description>Any results when you compare environment variables : CCOPTS LDOPTS ,...&lt;BR /&gt;&lt;BR /&gt;Regards&lt;BR /&gt;Jean-Luc</description>
      <pubDate>Wed, 02 Mar 2005 13:26:29 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/problems-with-make/m-p/4888923#M846466</guid>
      <dc:creator>Jean-Luc Oudart</dc:creator>
      <dc:date>2005-03-02T13:26:29Z</dc:date>
    </item>
    <item>
      <title>Re: Problems with make</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/problems-with-make/m-p/4888924#M846467</link>
      <description>BINGO!!&lt;BR /&gt;&lt;BR /&gt;I checked the environmental variables between the two accounts.  One the one that was not working, CCOPTS was equal to '-Aa -g +DAportable', on the working account the CCOPTS variable was not set.  I unset the CCOPTS variable on the non-working account, and the make started working as expected.  &lt;BR /&gt;&lt;BR /&gt;I do not understand this.  If anyone can explain, I would love to hear it, but at least we have a workaround for the problem.&lt;BR /&gt;&lt;BR /&gt;Thanks all, and I will be assigning points shortly.</description>
      <pubDate>Wed, 02 Mar 2005 13:58:38 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/problems-with-make/m-p/4888924#M846467</guid>
      <dc:creator>Tom Henning</dc:creator>
      <dc:date>2005-03-02T13:58:38Z</dc:date>
    </item>
    <item>
      <title>Re: Problems with make</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/problems-with-make/m-p/4888925#M846468</link>
      <description>Okay, I am a novice to the forms yet, so I did not close this thread in the above posting, which does contain the solution to the problem.  Si I am closing it here.</description>
      <pubDate>Wed, 16 Mar 2005 06:27:40 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/problems-with-make/m-p/4888925#M846468</guid>
      <dc:creator>Tom Henning</dc:creator>
      <dc:date>2005-03-16T06:27:40Z</dc:date>
    </item>
  </channel>
</rss>

