summaryrefslogtreecommitdiff
path: root/libre/dkms-libre/01-broken-uninstall.patch
diff options
context:
space:
mode:
authorAndré Fabian Silva Delgado <emulatorman@parabola.nu>2014-01-31 14:13:04 -0200
committerAndré Fabian Silva Delgado <emulatorman@parabola.nu>2014-01-31 14:13:04 -0200
commit7395b28b4a9ebcc527f0e1b6ab37335ebdde109f (patch)
treeb443666fa51b925c046563f18a9abda164c2b947 /libre/dkms-libre/01-broken-uninstall.patch
parentc7555a26857f08cecb2fb7c2a695c7aaf964dbbb (diff)
remove dkms-libre because is only useful with nonfree open-vm-tools-dkms, virtualbox-guest-dkms and virtualbox-host-dkms
Diffstat (limited to 'libre/dkms-libre/01-broken-uninstall.patch')
-rw-r--r--libre/dkms-libre/01-broken-uninstall.patch22
1 files changed, 0 insertions, 22 deletions
diff --git a/libre/dkms-libre/01-broken-uninstall.patch b/libre/dkms-libre/01-broken-uninstall.patch
deleted file mode 100644
index a859efabe..000000000
--- a/libre/dkms-libre/01-broken-uninstall.patch
+++ /dev/null
@@ -1,22 +0,0 @@
-diff --git a/dkms b/dkms
-index abb01a4..265b69a 100644
---- a/dkms
-+++ b/dkms
-@@ -162,11 +162,14 @@ set_kernel_source_dir()
-
- # A little test function for DKMS commands that only work on one kernel.
- have_one_kernel() {
-- (( ${#kernelver[@]} > 1 )) && \
-- die 4 $"The action $1 does not support multiple kernel version" \
-- $"parameters on the command line."
-- [[ $all ]] && die 5 $"The action $1 does not support the --all" \
-- $"parameter."
-+ if (( ${#kernelver[@]} != 1 )); then
-+ die 4 $"The action $1 does not support multiple kernel version" \
-+ $"parameters on the command line."
-+ fi
-+ if [[ $all ]]; then
-+ die 5 $"The action $1 does not support the --all" \
-+ $"parameter."
-+ fi
- }