diff options
author | Mark Brand <mabrand@mabrand.nl> | 2010-12-23 01:42:24 (GMT) |
---|---|---|
committer | Mark Brand <mabrand@mabrand.nl> | 2010-12-23 01:42:24 (GMT) |
commit | 64592d2a95c3a5155961eb1dc785a67516553c10 (patch) | |
tree | eb2c77bbd561da6b412e7de0f2edd44d7e2a2503 /src/postgresql.mk | |
parent | 322d0adc8fb066d2eadcdd6dd7ea011dc790fd46 (diff) | |
download | mxe-64592d2a95c3a5155961eb1dc785a67516553c10.zip mxe-64592d2a95c3a5155961eb1dc785a67516553c10.tar.gz mxe-64592d2a95c3a5155961eb1dc785a67516553c10.tar.bz2 |
package postgresql: fix update macro
Diffstat (limited to 'src/postgresql.mk')
-rw-r--r-- | src/postgresql.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/postgresql.mk b/src/postgresql.mk index eb0bc97..9a9dfa2 100644 --- a/src/postgresql.mk +++ b/src/postgresql.mk @@ -15,7 +15,7 @@ $(PKG)_DEPS := gcc zlib openssl define $(PKG)_UPDATE wget -q -O- 'http://git.postgresql.org/gitweb?p=postgresql.git;a=tags' | \ - grep 'refs/tags/REL[0-9_]*"' | \ + grep 'refs/tags/REL9[0-9_]*"' | \ $(SED) 's,.*refs/tags/REL\(.*\)".*,\1,g;' | \ $(SED) 's,_,.,g' | \ head -1 |