Files
haikuports/dev-libs/botan/patches/botan-3.3.0.patchset
2024-04-06 11:21:20 +02:00

23 lines
620 B
Plaintext

From 25926b1b6c449a2c157fcab6fd76a76b2f9433dd 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 b052bec..38310b7 100755
--- a/src/scripts/install.py
+++ b/src/scripts/install.py
@@ -150,7 +150,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.43.2