diff options
author | Rene Ladan <rene@FreeBSD.org> | 2021-05-15 13:24:21 +0000 |
---|---|---|
committer | Rene Ladan <rene@FreeBSD.org> | 2021-05-15 13:24:21 +0000 |
commit | c7f483b68d6cf8107b6102dcb7c59c154dd81539 (patch) | |
tree | 3b9a367222bccd2964458a01a281c1c64bc50e55 | |
parent | bf40d3dbc9732d8884f2f91555c2adf1a7bd0394 (diff) |
Revert "multimedia/makemkv: fix typo in assignment"
As tobik points out, there was no typo:
- the license for ffmpeg is "LGPL21+" , not "LGPL21"
- the space is there to distinguish the assignment operator
from the append operator.
This reverts commit ccd9394dc57170504aafd487f47d0680d752677d.
-rw-r--r-- | multimedia/makemkv/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/multimedia/makemkv/Makefile b/multimedia/makemkv/Makefile index 32638cdaeb4b..26db9a0ef3f1 100644 --- a/multimedia/makemkv/Makefile +++ b/multimedia/makemkv/Makefile @@ -32,7 +32,7 @@ LICENSE_PERMS_MAKEMKV= dist-mirror no-dist-sell pkg-mirror no-pkg-sell \ LICENSE_PERMS_FDK= dist-mirror no-dist-sell pkg-mirror no-pkg-sell \ auto-accept LICENSE_DISTFILES_FDK= fdk-aac-${FDKAACVERSION}.tar.gz -LICENSE_DISTFILES_LGPL21+= ffmpeg-${FFMPEGVERSION}.tar.bz2 +LICENSE_DISTFILES_LGPL21+ = ffmpeg-${FFMPEGVERSION}.tar.bz2 LICENSE_DISTFILES_OpenSSL= openssl-${OPENSSLFULLVER}.tar.gz LICENSE_DISTFILES_MAKEMKV= makemkv-bin-${PORTVERSION}.tar.gz \ makemkv-oss-${PORTVERSION}.tar.gz |