diff options
author | Matthias Andree <mandree@FreeBSD.org> | 2019-07-30 11:59:29 +0000 |
---|---|---|
committer | Matthias Andree <mandree@FreeBSD.org> | 2019-07-30 11:59:29 +0000 |
commit | 9536ccbad175497a34c73bb046f859c4cc57913d (patch) | |
tree | 9bbc70fdcda0da6cccab13fcbcc52edab6590f72 /sysutils/e2fsprogs/Makefile | |
parent | 7aa540693ed30213a9143196d4744b95f5a8b032 (diff) | |
download | ports-9536ccbad175497a34c73bb046f859c4cc57913d.tar.gz ports-9536ccbad175497a34c73bb046f859c4cc57913d.zip |
Fix f_pre_1970_date_encoding on all 32-bit architectures but i386.
e2fsck would misparse the E2FSCK_TIME environment variable on architectures
where sizeof(long) < sizeof(time_t), i. e. all 32-bit architectures but i386.
This led to f_pre_1970_date_encoding test failures.
Note that I haven't tested the change for lack of respective hardware
or qemu rigs, and prior to receiving the reporter feedback, but
it would appear the fix is safe and plausible in itself.
Bump PORTREVISION as this changes the code on all architectures,
and to trigger version-based rebuild attempts where needed.
See also: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=932906
Reported by: Thorsten Glaser <tg@mirbsd.de> against Debian
Reported by: Stanislav S. Grinkin (privately) against FreeBSD
Reported by: prior fall-out and BROKEN_<ARCH> tags
Obtained from: https://git.kernel.org/pub/scm/fs/ext2/e2fsprogs.git/commit/?id=a368e0cbfb33d3050dcccccf0bf5a5539d3dac39
MFH: 2019Q3
Notes
Notes:
svn path=/head/; revision=507631
Diffstat (limited to 'sysutils/e2fsprogs/Makefile')
-rw-r--r-- | sysutils/e2fsprogs/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sysutils/e2fsprogs/Makefile b/sysutils/e2fsprogs/Makefile index 930d3af81995..a680ed061c49 100644 --- a/sysutils/e2fsprogs/Makefile +++ b/sysutils/e2fsprogs/Makefile @@ -3,7 +3,7 @@ PORTNAME= e2fsprogs PORTVERSION= 1.45.3 -PORTREVISION?= 1 +PORTREVISION?= 2 CATEGORIES?= sysutils MASTER_SITES= KERNEL_ORG/linux/kernel/people/tytso/${PORTNAME}/v${PORTVERSION} |