diff options
author | marcus <marcus@FreeBSD.org> | 2005-02-21 06:36:03 +0800 |
---|---|---|
committer | marcus <marcus@FreeBSD.org> | 2005-02-21 06:36:03 +0800 |
commit | 3e828a1409a7276ac875878367649805af8174a5 (patch) | |
tree | d741a75e2f67ed7e73ed3128233204eddbd1db6b /x11/gdm/Makefile | |
parent | 3356246c0e6b833e1342f4a3995a8e2bc6f18a93 (diff) | |
download | freebsd-ports-gnome-3e828a1409a7276ac875878367649805af8174a5.tar.gz freebsd-ports-gnome-3e828a1409a7276ac875878367649805af8174a5.tar.zst freebsd-ports-gnome-3e828a1409a7276ac875878367649805af8174a5.zip |
The glibc strftime padding options were MFC'd to 5-STABLE. Let's use them.
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 |