diff options
author | Phil Sutter <phil@nwl.cc> | 2025-01-05 01:18:30 +0100 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2025-01-06 11:53:43 +0100 |
commit | eb8ff227ac95ac8564f20564a92c122a0f64903c (patch) | |
tree | 345828e7079b6536d13b8e625ed53e4ea363f90a /package | |
parent | ec55546752ba6df7ddc10a223db5157af432429d (diff) |
package: ca-certificates: Fix python3 path
Python is usually installed in /usr/bin.
Actually this should use host-built python binary instead, but porting
the dependencies seems non-trivial. Python packaging is such a mess. :(
Signed-off-by: Phil Sutter <phil@nwl.cc>
Diffstat (limited to 'package')
-rw-r--r-- | package/ca-certificates/patches/patch-mozilla_Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/ca-certificates/patches/patch-mozilla_Makefile b/package/ca-certificates/patches/patch-mozilla_Makefile index 768f26373..a9cd5ad44 100644 --- a/package/ca-certificates/patches/patch-mozilla_Makefile +++ b/package/ca-certificates/patches/patch-mozilla_Makefile @@ -5,7 +5,7 @@ all: - python3 certdata2pem.py -+ /bin/python3 certdata2pem.py ++ /usr/bin/python3 certdata2pem.py clean: -rm -f *.crt |