Files
haikuports/dev-libs/botan/patches/botan-3.0.0.patchset
Schrijvers Luc d6fd23fe3c botan3, add recipe for version 3.0.0 (#8674)
* botan3, add recipe for version 3.0.0

* botan (2), remove binary from package (would conflict with binary from botan3)
2023-05-20 06:03:45 +02: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