diff options
author | John Marino <marino@FreeBSD.org> | 2014-10-21 14:38:58 +0000 |
---|---|---|
committer | John Marino <marino@FreeBSD.org> | 2014-10-21 14:38:58 +0000 |
commit | 4c20dde0e5aeab92d06a7b4ce75eaf7c2f262cc2 (patch) | |
tree | e5d4ada21f6f4692254354e30beb6572b4026f7f | |
parent | New port devel/arm-none-eabi-gcc for ARM bare metal programming. (diff) |
lang/gnat_util: Move PORTREVISION to central location
Many of the ports based on gcc-aux sources have a central location
defining their PORTREVISION to make it easy to reset all them all when
the base version is updated. lang/gnat_util should have had, but did not
and as a result the PORTREVISION didn't get reset at all. Centralize
it for the future.
Notes
Notes:
svn path=/head/; revision=371323
-rw-r--r-- | lang/gcc-aux/Makefile.version | 1 | ||||
-rw-r--r-- | lang/gnat_util/Makefile | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/lang/gcc-aux/Makefile.version b/lang/gcc-aux/Makefile.version index f724dfac814e..2fe4276dc1f4 100644 --- a/lang/gcc-aux/Makefile.version +++ b/lang/gcc-aux/Makefile.version @@ -5,6 +5,7 @@ GCC_POINT= 1 GCC_VERSION= ${GCC_BRANCH}.${GCC_POINT} SNAPSHOT= 20140716 MAIN_PR= 0 +UTIL_PR= 2 ARMV5_PR= 0 ARMV7_PR= 0 diff --git a/lang/gnat_util/Makefile b/lang/gnat_util/Makefile index 9a8009b1a21f..a5ecd5451b6b 100644 --- a/lang/gnat_util/Makefile +++ b/lang/gnat_util/Makefile @@ -3,7 +3,7 @@ PORTNAME= gnat_util PORTVERSION= ${SNAPSHOT} -PORTREVISION= 2 +PORTREVISION= ${UTIL_PR} CATEGORIES= lang MASTER_SITES= ${MASTER_SITE_GCC} MASTER_SITE_SUBDIR= ${MS_SUBDIR} |