Re: [HACKERS] Backend build fails in current

From: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
To: Peter Eisentraut <peter_e(at)gmx(dot)net>
Cc: hackers(at)postgreSQL(dot)org
Subject: Re: [HACKERS] Backend build fails in current
Date: 1999-11-13 14:50:08
Message-ID: 279.942504608@sss.pgh.pa.us
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-hackers

Peter Eisentraut <e99re41(at)DoCS(dot)UU(dot)SE> writes:
>> Are you still seeing this? I didn't see it with a pull from CVS
>> yesterday. If you are, what version of make are you using?

> Affirmative. Same problem.

> GNU Make version 3.74, by Richard Stallman and Roland McGrath.

> That's a little old it seems,

It is. I'd suggest leaning on your sysadmin to get it updated to
something current (3.78.1 is current I think).

In the meantime, please try the attached patch. If it seems to
straighten out the behavior on your make, I'll commit it.

regards, tom lane

*** src/backend/Makefile.orig Sun Mar 7 18:05:56 1999
--- src/backend/Makefile Sat Nov 13 09:43:17 1999
***************
*** 116,127 ****
# make files in our subdirectories.

parse.h: parser/parse.h
- $(MAKE) -C parser parse.h
cp parser/parse.h .

! fmgr.h:
! $(MAKE) -C utils fmgr.h
cp utils/fmgr.h .

#############################################################################
clean:
--- 116,131 ----
# make files in our subdirectories.

parse.h: parser/parse.h
cp parser/parse.h .

! parser/parse.h:
! $(MAKE) -C parser parse.h
!
! fmgr.h: utils/fmgr.h
cp utils/fmgr.h .
+
+ utils/fmgr.h:
+ $(MAKE) -C utils fmgr.h

#############################################################################
clean:

Browse pgsql-hackers by date

  From Date Subject
Next Message Tom Lane 1999-11-13 14:57:08 Re: [HACKERS] RFC: create/alter user extension
Previous Message Peter Eisentraut 1999-11-13 13:38:03 Re: [HACKERS] RFC: create/alter user extension