-
Notifications
You must be signed in to change notification settings - Fork 37.7k
Closed as not planned
Closed as not planned
Copy link
Labels
Description
When building the Android dependencies and SOURCES_PATH
is set to a non-default location (i.e. not in the depends directory), doing make apk
results in the following error:
find: ‘../depends/sources/’: No such file or directory
find: ‘../depends/sources/’: No such file or directory
tar: --exclude=*/*: Cannot open: No such file or directory
tar: Error is not recoverable: exiting now
find: ‘../depends/sources/’: No such file or directory
find: ‘../depends/sources/’: No such file or directory
tar: --exclude=*/*: Cannot open: No such file or directory
tar: Error is not recoverable: exiting now
find: ‘../depends/sources/’: No such file or directory
find: ‘../depends/sources/’: No such file or directory
tar: --exclude=*/*: Cannot open: No such file or directory
tar: Error is not recoverable: exiting now
It seems like the culprit is
bitcoin/src/Makefile.qt.include
Lines 385 to 387 in a3791da
QT_BASE_VERSION = $(lastword $(shell $(MOC) --version)) | |
QT_BASE_PATH = $(shell find ../depends/sources/ -maxdepth 1 -type f -regex ".*qtbase.*$(QT_BASE_VERSION)\.tar.xz") | |
QT_BASE_TLD = $(shell tar tf $(QT_BASE_PATH) --exclude='*/*') |