diff options
author | Bernd Kuhls <bernd.kuhls@t-online.de> | 2017-05-28 23:37:38 +0200 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2017-05-29 21:51:17 +0200 |
commit | eca61c93d5e6061a0749c94f7a4b5da73e332777 (patch) | |
tree | b4af8e3eb5af67458133a5cc153a1a566b7f5403 | |
parent | 01ad3a38d25af99ae29a7ffa65d8e838bfdbec03 (diff) | |
download | buildroot-eca61c93d5e6061a0749c94f7a4b5da73e332777.tar.gz buildroot-eca61c93d5e6061a0749c94f7a4b5da73e332777.zip |
package/mxml: fix download URL
The project moved to github, the current download URL is broken:
$ wget -q http://www.msweet.org/files/project3/mxml-2.10.tar.gz
$ file mxml-2.10.tar.gz
mxml-2.10.tar.gz: HTML document, UTF-8 Unicode text, with very long lines
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
-rw-r--r-- | package/mxml/mxml.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/mxml/mxml.mk b/package/mxml/mxml.mk index 7c48380e59..ac270bd1bb 100644 --- a/package/mxml/mxml.mk +++ b/package/mxml/mxml.mk @@ -5,7 +5,7 @@ ################################################################################ MXML_VERSION = 2.10 -MXML_SITE = http://www.msweet.org/files/project3 +MXML_SITE = https://github.com/michaelrsweet/mxml/releases/download/release-$(MXML_VERSION) MXML_LICENSE = LGPL-2.0+ with exceptions MXML_LICENSE_FILES = COPYING MXML_INSTALL_STAGING = YES |