mirror of
https://github.com/termux-pacman/termux-packages.git
synced 2026-02-16 23:01:07 +00:00
buildorder.py: Handle also ' in TERMUX_PKG_DEPENDS
This commit is contained in:
@@ -50,7 +50,7 @@ class TermuxBuildFile(object):
|
||||
else:
|
||||
continue
|
||||
|
||||
comma_deps = line[len(prefix):].replace('"', '')
|
||||
comma_deps = line[len(prefix):].replace('"', '').replace("'", '')
|
||||
|
||||
return set([
|
||||
# Replace parenthesis to handle version qualifiers, as in "gcc (>= 5.0)":
|
||||
|
||||
Reference in New Issue
Block a user