mirror of
https://github.com/yann64/haikuports.git
synced 2026-04-08 21:00:05 +02:00
23 lines
619 B
Plaintext
23 lines
619 B
Plaintext
From 85f42b209525a8ae08f90fc031b5906ddfe0b2f1 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 0f58399..02e9b55 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.51.0
|
|
|