diff options
author | dir <dir@ableton.com> | 2017-03-06 15:47:05 +0100 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2017-03-22 06:02:45 +0100 |
commit | 0918c67d7e39f6e97a77289e2a7a3bf2c725b7af (patch) | |
tree | 787e666ea73e5fcbc7924a0dfba105ca055eb6e4 /mk | |
parent | 33c44324fb1eac278d8121e0ef5e80e28714ab8b (diff) |
Allow for local git repos
Diffstat (limited to 'mk')
-rw-r--r-- | mk/fetch.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mk/fetch.mk b/mk/fetch.mk index 28ae0e7ec..af598f27d 100644 --- a/mk/fetch.mk +++ b/mk/fetch.mk @@ -62,7 +62,7 @@ $(1): mkdir -p "$$$${fullname%%/$$$$filename}"; \ cd "$$$${fullname%%/$$$$filename}"; \ for url in "${PKG_SITES}"; do case $$$$url in \ - git://*|*.git) \ + file://*|git://*|*.git) \ rm -rf $${PKG_NAME}-$${PKG_VERSION}; \ if [ ! -z "$${PKG_GIT}" ]; then \ echo "Using git ${PKG_GIT}: $${PKG_VERSION}" $(DL_TRACE); \ |