Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: attempt fix build with extra quotes #9

Merged
merged 2 commits into from
May 29, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
fix: attempt fix by quoting paths
bsherman committed May 29, 2023
commit 621eb21522c7a0a42d0839c99edcd3aa552bfa51
4 changes: 2 additions & 2 deletions build-kmod-v4l2loopback.sh
Original file line number Diff line number Diff line change
@@ -14,6 +14,6 @@ rpm-ostree install \
akmod-v4l2loopback-*.fc${RELEASE}.${ARCH}
V4L2LOOP_AKMOD_VERSION="$(basename "$(rpm -q "akmod-v4l2loopback" --queryformat '%{VERSION}-%{RELEASE}.%{ARCH}')" ".fc${RELEASE%%.*}")"
akmods --force --kernels "${KERNEL}" --kmod "v4l2loopback"
modinfo /usr/lib/modules/${KERNEL}/extra/v4l2loopback/v4l2loopback.ko.xz > /dev/null \
|| (cat /var/cache/akmods/v4l2loopback/${V4L2LOOP_AKMOD_VERSION}-for-${KERNEL}.failed.log && exit 1)
modinfo "/usr/lib/modules/${KERNEL}/extra/v4l2loopback/v4l2loopback.ko.xz" > /dev/null \
|| (cat "/var/cache/akmods/v4l2loopback/${V4L2LOOP_AKMOD_VERSION}-for-${KERNEL}.failed.log" && exit 1)