linux-qubasis
linux oasis port as a qubes template
git clone https://9o.is/git/linux-qubasis.git
commit cc83d3830183fe16d82396ade63f6ba06c8e2b56 parent 7dc0fed601833e2180e6defeb0f5544912cf7e1c Author: Jul <jul@9o.is> Date: Tue, 15 Jul 2025 20:59:43 -0400 fix yash load path Diffstat:
| M | pkg/yash/build | | | 13 | ++++++++----- |
1 file changed, 8 insertions(+), 5 deletions(-)
diff --git a/pkg/yash/build b/pkg/yash/build @@ -4,12 +4,15 @@ # ncurses-devel # asciidoc -rm -rf "$outdir" +repodir="$srcdir/repo" ( - cd $srcdir/repo - ./configure --prefix="$outdir" + cd $repodir + ./configure --prefix= ) -cp "$srcdir/config.h" "$srcdir/repo" -make -C "$srcdir/repo" install +rm -rf "$outdir" +cp "$srcdir/config.h" "$repodir" + +make -C "$repodir" +make DESTDIR="$outdir" -C "$repodir" install