diff options
author | Mathieu Arnold <mat@FreeBSD.org> | 2024-02-03 12:11:52 +0000 |
---|---|---|
committer | Mathieu Arnold <mat@FreeBSD.org> | 2024-02-03 12:11:52 +0000 |
commit | 064923481f420136c46895d1047344c580be3c25 (patch) | |
tree | 419d9dd165d97d50a3c38e214129bdd0ea0135f3 | |
parent | f4dbff62e876ed0ba2ccc387c43f132018be851b (diff) | |
download | ports-064923481f420136c46895d1047344c580be3c25.tar.gz ports-064923481f420136c46895d1047344c580be3c25.zip |
Mk/bsd.options.mk: fix typo
-rw-r--r-- | Mk/bsd.options.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Mk/bsd.options.mk b/Mk/bsd.options.mk index dba8829e7d73..83a03c885ff0 100644 --- a/Mk/bsd.options.mk +++ b/Mk/bsd.options.mk @@ -555,7 +555,7 @@ ${deptype}_DEPENDS+= ${${opt}_${deptype}_DEPENDS} . endif . for p in ${SUBPACKAGES} . if defined(${opt}_${deptype}_DEPENDS.${p}) -${deptype}_DEPENDS.{p}+= ${${opt}_${deptype}_DEPENDS.${p}} +${deptype}_DEPENDS.${p}+= ${${opt}_${deptype}_DEPENDS.${p}} . endif . endfor . endfor @@ -631,7 +631,7 @@ ${deptype}_DEPENDS+= ${${opt}_${deptype}_DEPENDS_OFF} . endif . for p in ${SUBPACKAGES} . if defined(${opt}_${deptype}_DEPENDS_OFF.${p}) -${deptype}_DEPENDS.{p}+= ${${opt}_${deptype}_DEPENDS_OFF.${p}} +${deptype}_DEPENDS.${p}+= ${${opt}_${deptype}_DEPENDS_OFF.${p}} . endif . endfor . endfor |