home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #26 / NN_1992_26.iso / spool / gnu / utils / bug / 1987 < prev    next >
Encoding:
Text File  |  1992-11-07  |  895 b   |  30 lines

  1. Newsgroups: gnu.utils.bug
  2. Path: sparky!uunet!charon.amdahl.com!pacbell.com!decwrl!ames!saimiri.primate.wisc.edu!zaphod.mps.ohio-state.edu!cis.ohio-state.edu!che.utexas.EDU!jwe
  3. From: jwe@che.utexas.EDU (John Eaton)
  4. Subject: Oleo-1.0 fails to compile in subdirectory
  5. Message-ID: <9211060012.AA16370@schoch.che.utexas.edu>
  6. Sender: gnulists@ai.mit.edu
  7. Organization: GNUs Not Usenet
  8. Distribution: gnu
  9. Date: Fri, 6 Nov 1992 00:12:37 GMT
  10. Approved: bug-gnu-utils@prep.ai.mit.edu
  11. Lines: 17
  12.  
  13. Using GNU make and gcc, oleo-1.0 fails to compile in a subdirectory.
  14. The problem appears to be that the Makefile.in has the rule
  15.  
  16.   .c.o:
  17.       $(CC) -c $(ALL_CFLAGS) $(CPPFLAGS) $<
  18.  
  19. instead of
  20.  
  21.   .c.o:
  22.       $(CC) -c $(ALL_CFLAGS) $(CPPFLAGS) -I$(srcdir) $<
  23.  
  24. as the other GNU utilities do (fileutils, shellutils, etc.).
  25.  
  26. --
  27. John W. Eaton      | 4.3BSD is not perfect.  -- Leffler, et al. (1989).
  28. jwe@che.utexas.edu |
  29.  
  30.