mirror of
https://github.com/yann64/haikuports.git
synced 2026-04-15 16:20:08 +02:00
23 lines
619 B
Plaintext
23 lines
619 B
Plaintext
From 7db2ea18e95df3822d8314816a79b2ce298909a7 Mon Sep 17 00:00:00 2001
|
|
From: Chris Roberts <cpr420@gmail.com>
|
|
Date: Wed, 3 May 2023 00:16:42 -0600
|
|
Subject: Don't mkdir prefix during install
|
|
|
|
|
|
diff --git a/src/scripts/install.py b/src/scripts/install.py
|
|
index 4afdfe0..28363d1 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.48.1
|
|
|