diff options
author | marino <marino@FreeBSD.org> | 2015-06-23 18:57:16 +0800 |
---|---|---|
committer | marino <marino@FreeBSD.org> | 2015-06-23 18:57:16 +0800 |
commit | 797c6bc3a41bfaec4ae76a023995f1785e4748c6 (patch) | |
tree | 27881809639114506c6bc72768352fe2d3cbd62f /Mk/Uses | |
parent | a2cb3c6fcdc2b515c8c40d0d9cbb78a64b461ee1 (diff) | |
download | freebsd-ports-gnome-797c6bc3a41bfaec4ae76a023995f1785e4748c6.tar.gz freebsd-ports-gnome-797c6bc3a41bfaec4ae76a023995f1785e4748c6.tar.zst freebsd-ports-gnome-797c6bc3a41bfaec4ae76a023995f1785e4748c6.zip |
Uses/ada.mk: "47" is no longer a valid argument
The lang/gcc47-aux compiler was removed last week, so it is being
removed as a build option for the Ada framework.
Diffstat (limited to 'Mk/Uses')
-rw-r--r-- | Mk/Uses/ada.mk | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/Mk/Uses/ada.mk b/Mk/Uses/ada.mk index 49947a658685..a3fdb26dd38b 100644 --- a/Mk/Uses/ada.mk +++ b/Mk/Uses/ada.mk @@ -6,7 +6,7 @@ # # Feature: ada # Usage: USES=ada -# Valid ARGS: 47, 49, 5 +# Valid ARGS: 49, 5 # # MAINTAINER: marino@FreeBSD.org @@ -15,9 +15,7 @@ _INCLUDE_USES_ADA_MK= yes CC= ada -. if ${ada_ARGS:M47} -ADAXX= gcc47 -. elif ${ada_ARGS:M49} +. if ${ada_ARGS:M49} ADAXX= gcc . elif ${ada_ARGS:M5} ADAXX= gcc5 |