Subject: possible bug in package postgresql81
To: None <pkgsrc-users@netbsd.org>
From: Adrian Maier <adrian.maier@gmail.com>
List: pkgsrc-users
Date: 03/22/2006 15:30:42
Hello,

I have upgraded the pkgsrc tree  with cvs update,  and I've
tried to build databases/postgresql81.

The build stops immediately,   because it's trying to include some
files (Makefile.common if i remember correctly)  from the directory
../../wip .   I don't have any directory called "wip" in the entire
pkgsrc tree.

I think this is a bug , because i got rid of the errors after modifying
some references to that misterious "wip" directory.  Below  I have
included the modifications i've made - but i'm not sure if that's enough
and correct.

Please comment. Is this indeed a bug ?

Cheers,
Adrian Maier




Index: postgresql81/Makefile
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
RCS file: /cvsroot/pkgsrc/databases/postgresql81/Makefile,v
retrieving revision 1.1.1.1
diff -r1.1.1.1 Makefile
6,7c6,7
< DEPENDS+=3D=09postgresql81-client>=3D${BASE_VERS}:../../wip/postgresql81-=
client
< DEPENDS+=3D=09postgresql81-server>=3D${BASE_VERS}:../../wip/postgresql81-=
server
---
> DEPENDS+=3D=09postgresql81-client>=3D${BASE_VERS}:../postgresql81-client
> DEPENDS+=3D=09postgresql81-server>=3D${BASE_VERS}:../postgresql81-server
Index: postgresql81/Makefile.common
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
RCS file: /cvsroot/pkgsrc/databases/postgresql81/Makefile.common,v
retrieving revision 1.1.1.1
diff -r1.1.1.1 Makefile.common
12c12,13
< .include "../../wip/postgresql81/Makefile.mirrors"
---
> #.include "../../wip/postgresql81/Makefile.mirrors"
> .include "Makefile.mirrors"
Index: postgresql81-client/Makefile
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
RCS file: /cvsroot/pkgsrc/databases/postgresql81-client/Makefile,v
retrieving revision 1.1.1.1
diff -r1.1.1.1 Makefile
6c6
< .include "../../wip/postgresql81/Makefile.common"
---
> .include "../postgresql81/Makefile.common"
45c45
< .include "../../wip/postgresql81/options.mk"
---
> .include "../postgresql81/options.mk"
Index: postgresql81-server/Makefile
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
RCS file: /cvsroot/pkgsrc/databases/postgresql81-server/Makefile,v
retrieving revision 1.1.1.1
diff -r1.1.1.1 Makefile
9c9
< .include "../../wip/postgresql81/Makefile.common"
---
> .include "../postgresql81/Makefile.common"