diff options
author | Sascha Montellese <sascha.montellese@gmail.com> | 2017-03-09 11:54:51 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-03-09 11:54:51 +0100 |
commit | 5211531aa530c1d63edfad5e16dfb87f05bcf508 (patch) | |
tree | 90507d65a1220c171e263c12a26cba71771622db | |
parent | 31d4e5ef7b21702c46a929e66ab5ba3a0440909e (diff) | |
parent | 7899442a2408e23bd445296773d472aed2a95333 (diff) |
Merge pull request #11830 from Montellese/fmt_fix_depends
[depends] libfmt: remove BASE_URL pointing to github and fix native linux cmake build
-rw-r--r-- | tools/depends/target/libfmt/Makefile | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/tools/depends/target/libfmt/Makefile b/tools/depends/target/libfmt/Makefile index 5151f8fb3d..f1126fbce8 100644 --- a/tools/depends/target/libfmt/Makefile +++ b/tools/depends/target/libfmt/Makefile @@ -4,7 +4,6 @@ DEPS = Makefile # lib name, version LIBNAME=fmt VERSION=3.0.1 -BASE_URL=https://github.com/fmtlib/fmt/archive SOURCE=$(LIBNAME)-$(VERSION) ARCHIVE=$(SOURCE).tar.gz @@ -23,7 +22,7 @@ else TARBALLS_LOCATION = $(ROOT_DIR) RETRIEVE_TOOL := curl ARCHIVE_TOOL := tar --strip-components=1 -xf - CMAKE := cmake + CMAKE := cmake -DCMAKE_INSTALL_PREFIX=$(PREFIX) endif endif |