linux-qubasis

linux oasis port as a qubes template

git clone https://9o.is/git/linux-qubasis.git

commit 19ff1ce925c89b89172797365230cd1de68331d3
parent 4ec073bf5817eb7bab4e741878af61b478f458e6
Author: Jul <jul@9o.is>
Date:   Sat, 23 Aug 2025 18:46:23 +0800

change headers directory to include

Diffstat:
Mpkg/abduco/gen.sh | 2+-
Rpkg/abduco/headers/config.h -> pkg/abduco/include/config.h | 0
Mpkg/oksh/gen.sh | 2+-
Rpkg/oksh/headers/pconfig.h -> pkg/oksh/include/pconfig.h | 0
Mpkg/sbase/gen.sh | 6+++---
5 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/pkg/abduco/gen.sh b/pkg/abduco/gen.sh @@ -2,7 +2,7 @@ cflags -std=c99 \ -D _POSIX_C_SOURCE=200809L \ -D _XOPEN_SOURCE=700 \ -D VERSION='\"0.6\"' \ - -I '$dir/headers' \ + -I '$dir/include' \ -Wno-sign-compare \ -Wno-unused-parameter diff --git a/pkg/abduco/headers/config.h b/pkg/abduco/include/config.h diff --git a/pkg/oksh/gen.sh b/pkg/oksh/gen.sh @@ -2,7 +2,7 @@ cflags -D SMALL \ -D EMACS \ -D VI \ -D _GNU_SOURCE \ - -I '$dir/headers' \ + -I '$dir/include' \ -Wno-pedantic \ -Wno-unused-but-set-variable \ -Wno-sign-compare \ diff --git a/pkg/oksh/headers/pconfig.h b/pkg/oksh/include/pconfig.h diff --git a/pkg/sbase/gen.sh b/pkg/sbase/gen.sh @@ -3,7 +3,7 @@ cflags -std=c99 \ -D _BSD_SOURCE \ -D _NETBSD_SOURCE \ -D _XOPEN_SOURCE=700 \ - -I '$outdir/headers' \ + -I '$outdir/include' \ -Wno-maybe-uninitialized \ -Wno-parentheses \ -Wno-misleading-indentation \ @@ -75,7 +75,7 @@ lib libutf.a libutf/fgetrune.c \ libutf/utftorunestr.c rule getconf '$srcdir/scripts/getconf.sh >$out' -build getconf '$outdir/headers/getconf.h' '| $srcdir/scripts/getconf.sh' +build getconf '$outdir/include/getconf.h' '| $srcdir/scripts/getconf.sh' exes() { for src in "$@"; do @@ -83,7 +83,7 @@ exes() { man "$src.1" if [ "$src" = 'getconf' ]; then - dep "$src" '$outdir/headers/getconf.h' + dep "$src" '$outdir/include/getconf.h' fi done }