From 0c763cdfc3d89492db2d0f1e0680d17fbeee66e1 Mon Sep 17 00:00:00 2001 From: fosslinux Date: Mon, 14 Jul 2025 11:45:29 +1000 Subject: [PATCH] Add makegloss to dist --- steps/dist-3.5/pass1.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/steps/dist-3.5/pass1.sh b/steps/dist-3.5/pass1.sh index b16a894f..fe2dc86b 100755 --- a/steps/dist-3.5/pass1.sh +++ b/steps/dist-3.5/pass1.sh @@ -17,6 +17,7 @@ src_compile() { cd mcon ./mconfig.SH perl ../bin/perload -o mconfig > metaconfig + ./makegloss.SH cd .. cd kit @@ -27,6 +28,7 @@ src_compile() { src_install() { mkdir -p "${DESTDIR}${PREFIX}/bin/" "${DESTDIR}${PREFIX}/lib/perl5/5.6.2" install mcon/metaconfig "${DESTDIR}${PREFIX}/bin/" + install mcon/makegloss "${DESTDIR}${PREFIX}/bin/" install kit/manifake "${DESTDIR}${PREFIX}/bin/" cp -r mcon/U/ "${DESTDIR}${PREFIX}/lib/perl5/5.6.2/" }