diff options
author | Tobias Kortkamp <tobik@FreeBSD.org> | 2019-08-13 14:46:28 +0000 |
---|---|---|
committer | Tobias Kortkamp <tobik@FreeBSD.org> | 2019-08-13 14:46:28 +0000 |
commit | 5223f58a4891cb4b842355aa2cdaaed78d901b3c (patch) | |
tree | f186b130a66fd45a90789815010748bae1750cef /devel/elfio | |
parent | Style: move GH_* variables closer to each other (diff) |
Mk/bsd.sanity.mk: Flag non-integer PORTREVISION/PORTEPOCH
Currently they are not checked and something like PORTREVISION=foo
or just PORTREVISION= is accepted. Some ports use indirection via
custom variables for them so it is worthwhile to check that they
are set to sane values.
While here fix ports that currently have non-integer PORTREVISION
or PORTEPOCH.
Approved by: portmgr (mat)
Differential Revision: https://reviews.freebsd.org/D21225
Notes
Notes:
svn path=/head/; revision=508829
Diffstat (limited to 'devel/elfio')
-rw-r--r-- | devel/elfio/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/devel/elfio/Makefile b/devel/elfio/Makefile index 9cc1dd37645d..db941c476a6d 100644 --- a/devel/elfio/Makefile +++ b/devel/elfio/Makefile @@ -3,7 +3,7 @@ PORTNAME= elfio PORTVERSION= 3.4 -PORTREVISION= +PORTREVISION= 0 CATEGORIES= devel MASTER_SITES= SF/elfio/ELFIO-sources/ELFIO-${PORTVERSION} |