diff options
author | Nguyễn Gia Phong <cnx@loang.net> | 2024-11-19 11:02:16 +0900 |
---|---|---|
committer | Nguyễn Gia Phong <cnx@loang.net> | 2024-11-19 11:02:16 +0900 |
commit | 1725ce5a7daf99a75508f15650a01321dd5a8ecc (patch) | |
tree | 77373eb85fd08c0236edf9d9a6b648eb28cbec00 /patches/e9patch-plugin-api-headers.patch | |
download | loftix-1725ce5a7daf99a75508f15650a01321dd5a8ecc.tar.gz |
Define some packages
Diffstat (limited to 'patches/e9patch-plugin-api-headers.patch')
-rw-r--r-- | patches/e9patch-plugin-api-headers.patch | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/patches/e9patch-plugin-api-headers.patch b/patches/e9patch-plugin-api-headers.patch new file mode 100644 index 0000000..f24f80d --- /dev/null +++ b/patches/e9patch-plugin-api-headers.patch @@ -0,0 +1,25 @@ +From 13ddf96e29edfea8e6af5d3a3dfea8d1315fa761 Mon Sep 17 00:00:00 2001 +From: =?UTF-8?q?Nguy=E1=BB=85n=20Gia=20Phong?= <cnx@loang.net> +Date: Mon, 18 Nov 2024 16:40:56 +0900 +Subject: [PATCH] Install plugin API headers to C_INCLUDE_PATH + +--- + Makefile | 5 ++--- + 1 file changed, 2 insertions(+), 3 deletions(-) + +diff --git a/Makefile b/Makefile +index 1218c65..20c5584 100644 +--- a/Makefile ++++ b/Makefile +@@ -110,9 +110,8 @@ install: all + doc/e9tool-user-guide.md | markdown > \ + "$(DESTDIR)/usr/share/doc/e9tool/e9tool-user-guide.html" + install -m 444 LICENSE "$(DESTDIR)/usr/share/doc/e9tool/LICENSE" +- install -d "$(DESTDIR)/usr/share/e9tool/include/" +- install -m 444 src/e9tool/e9tool.h "$(DESTDIR)/usr/share/e9tool/include/e9tool.h" +- install -m 444 src/e9tool/e9plugin.h "$(DESTDIR)/usr/share/e9tool/include/e9plugin.h" ++ install -Dm 444 src/e9tool/e9tool.h "$(DESTDIR)/usr/include/e9tool/e9tool.h" ++ install -Dm 444 src/e9tool/e9plugin.h "$(DESTDIR)/usr/include/e9tool/e9plugin.h" + install -d "$(DESTDIR)/usr/share/e9tool/examples/" + install -m 444 examples/bounds.c "$(DESTDIR)/usr/share/e9tool/examples/bounds.c" + sed \ |