pkgsrc-Users archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
possible bug in package postgresql81
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
===================================================================
RCS file: /cvsroot/pkgsrc/databases/postgresql81/Makefile,v
retrieving revision 1.1.1.1
diff -r1.1.1.1 Makefile
6,7c6,7
< DEPENDS+= postgresql81-client>=${BASE_VERS}:../../wip/postgresql81-client
< DEPENDS+= postgresql81-server>=${BASE_VERS}:../../wip/postgresql81-server
---
> DEPENDS+= postgresql81-client>=${BASE_VERS}:../postgresql81-client
> DEPENDS+= postgresql81-server>=${BASE_VERS}:../postgresql81-server
Index: postgresql81/Makefile.common
===================================================================
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
===================================================================
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
===================================================================
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"
Home |
Main Index |
Thread Index |
Old Index