mirror of
https://github.com/macports/macports-ports.git
synced 2026-07-12 18:20:25 -07:00
31 lines
1.1 KiB
Diff
31 lines
1.1 KiB
Diff
From 544559a78cf7f2901897723ddf04aec0a874eb0d Mon Sep 17 00:00:00 2001
|
|
From: Sergey Fedorov <vital.had@gmail.com>
|
|
Date: Thu, 5 Jan 2023 05:01:45 +0700
|
|
Subject: [PATCH 1/2] Makefile.in: fix include dir
|
|
|
|
---
|
|
Makefile.in | 6 +++---
|
|
1 file changed, 3 insertions(+), 3 deletions(-)
|
|
|
|
diff --git a/Makefile.in b/Makefile.in
|
|
index e0cff86..a89e95b 100755
|
|
--- Makefile.in
|
|
+++ Makefile.in
|
|
@@ -217,11 +217,11 @@ install-binaries: binaries install-lib-binaries install-bin-binaries
|
|
#========================================================================
|
|
|
|
install-libraries: libraries
|
|
- @$(INSTALL_DATA_DIR) $(DESTDIR)$(includedir)
|
|
- @echo "Installing header files in $(DESTDIR)$(includedir)"
|
|
+ @$(INSTALL_DATA_DIR) $(DESTDIR)$(pkgincludedir)
|
|
+ @echo "Installing header files in $(DESTDIR)$(pkgincludedir)"
|
|
@list='$(PKG_HEADERS)'; for i in $$list; do \
|
|
echo "Installing $(srcdir)/$$i" ; \
|
|
- $(INSTALL_DATA) $(srcdir)/$$i $(DESTDIR)$(includedir) ; \
|
|
+ $(INSTALL_DATA) $(srcdir)/$$i $(DESTDIR)$(pkgincludedir) ; \
|
|
done;
|
|
|
|
#========================================================================
|
|
--
|
|
2.39.0
|