Files
haikuports/dev-libs/botan/patches/botan3-3.1.1.patchset
2023-09-22 18:55:48 +00:00

23 lines
620 B
Plaintext

From 033c3a42ffb70a45eb4cf340a0704e78fd60ef86 Mon Sep 17 00:00:00 2001
From: Chris Roberts <cpr420@gmail.com>
Date: Wed, 3 May 2023 00:16:42 -0600s
Subject: Don't mkdir prefix during install
diff --git a/src/scripts/install.py b/src/scripts/install.py
index 2d059bf..0666ce1 100755
--- a/src/scripts/install.py
+++ b/src/scripts/install.py
@@ -151,7 +151,7 @@ def main(args):
prefix = cfg['prefix']
- for d in [prefix, lib_dir, bin_dir, target_include_dir]:
+ for d in [lib_dir, bin_dir, target_include_dir]:
makedirs(prepend_destdir(d))
for header in cfg['public_headers']:
--
2.37.3