From 50971fbeec3e2e4ed8422dd2a581e3c353dcf402 Mon Sep 17 00:00:00 2001 From: Christian Kellner Date: Thu, 17 Jun 2021 10:50:45 +0000 Subject: [PATCH] spec: install devices and mounts The new modules for devices and mounts need to be installed so that they actually end up in the rpm. --- osbuild.spec | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/osbuild.spec b/osbuild.spec index 6a451394..c42035c1 100644 --- a/osbuild.spec +++ b/osbuild.spec @@ -119,9 +119,15 @@ install -p -m 0755 $(find runners -type f -or -type l) %{buildroot}%{pkgdir}/run mkdir -p %{buildroot}%{pkgdir}/sources install -p -m 0755 $(find sources -type f) %{buildroot}%{pkgdir}/sources +mkdir -p %{buildroot}%{pkgdir}/devices +install -p -m 0755 $(find devices -type f) %{buildroot}%{pkgdir}/devices + mkdir -p %{buildroot}%{pkgdir}/inputs install -p -m 0755 $(find inputs -type f) %{buildroot}%{pkgdir}/inputs +mkdir -p %{buildroot}%{pkgdir}/mounts +install -p -m 0755 $(find mounts -type f) %{buildroot}%{pkgdir}/mounts + # mount point for bind mounting the osbuild library mkdir -p %{buildroot}%{pkgdir}/osbuild