diff options
author | Joe Marcus Clarke <marcus@FreeBSD.org> | 2005-02-20 22:36:03 +0000 |
---|---|---|
committer | Joe Marcus Clarke <marcus@FreeBSD.org> | 2005-02-20 22:36:03 +0000 |
commit | 558039027741371831bb0bd8eb9e30ab73f11351 (patch) | |
tree | 03d0b3f3fcea305320ca9496f20240e885398a81 /x11/gdm/Makefile | |
parent | Add 'Categories' in linux-opera.desktop and move it from (diff) |
The glibc strftime padding options were MFC'd to 5-STABLE. Let's use them.
Notes
Notes:
svn path=/head/; revision=129422
Diffstat (limited to 'x11/gdm/Makefile')
-rw-r--r-- | x11/gdm/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/x11/gdm/Makefile b/x11/gdm/Makefile index 3e396b5c4636..2e7c70fd63e5 100644 --- a/x11/gdm/Makefile +++ b/x11/gdm/Makefile @@ -53,7 +53,8 @@ post-extract: ${FILESDIR}/gdm.sh.sample > ${WRKSRC}/gdm.sh.sample post-patch: -.if ${OSVERSION} < 600006 +.if ( ${OSVERSION} > 600000 && ${OSVERSION} < 600006 ) || \ + ( ${OSVERSION} < 503101 ) .for po in zh_CN.po @${REINPLACE_CMD} -e 's|%-|%|g' ${WRKSRC}/po/${po} .endfor |