Buildfarm failure - asp

Started by Rocco Altierover 19 years ago2 messages
#1Rocco Altier
RoccoA@Routescape.com
1 attachment(s)

Had a buildfarm failure on asp (AIX/gcc), because of an extra space in
the Makefile.regress for ecpg.

Attached is a patch to allow a clean compile.

-rocco

Attachments:

ecpg-test-Makefile.patchapplication/octet-stream; name=ecpg-test-Makefile.patchDownload
Index: interfaces/ecpg/test/Makefile.regress
===================================================================
RCS file: /projects/cvsroot/pgsql/src/interfaces/ecpg/test/Makefile.regress,v
retrieving revision 1.1
diff -c -r1.1 Makefile.regress
*** interfaces/ecpg/test/Makefile.regress	2 Aug 2006 13:53:45 -0000	1.1
--- interfaces/ecpg/test/Makefile.regress	2 Aug 2006 18:42:13 -0000
***************
*** 1,6 ****
  override CPPFLAGS := -I$(srcdir)/../../include -I$(libpq_srcdir) $(CPPFLAGS) 
  override CFLAGS += $(PTHREAD_CFLAGS) -I$(srcdir)/../../include -I$(libpq_srcdir) -I../../include -I$(top_builddir)/src/include
! override LDFLAGS += -L../../ecpglib -L ../../pgtypeslib -L../../../libpq
  override LIBS += -lpgtypes -lecpg -lpq
  
  ECPG = ../../preproc/ecpg -I$(srcdir)/../../include
--- 1,6 ----
  override CPPFLAGS := -I$(srcdir)/../../include -I$(libpq_srcdir) $(CPPFLAGS) 
  override CFLAGS += $(PTHREAD_CFLAGS) -I$(srcdir)/../../include -I$(libpq_srcdir) -I../../include -I$(top_builddir)/src/include
! override LDFLAGS += -L../../ecpglib -L../../pgtypeslib -L../../../libpq
  override LIBS += -lpgtypes -lecpg -lpq
  
  ECPG = ../../preproc/ecpg -I$(srcdir)/../../include
#2Andrew Dunstan
andrew@dunslane.net
In reply to: Rocco Altier (#1)
Re: Buildfarm failure - asp

applied. thanks

andrew

Rocco Altier wrote:

Show quoted text

Had a buildfarm failure on asp (AIX/gcc), because of an extra space in
the Makefile.regress for ecpg.

Attached is a patch to allow a clean compile.