From 956c02263360b2c8aacf2cf3ae5ecd5f6fdb71c4 Mon Sep 17 00:00:00 2001 From: André Fabian Silva Delgado Date: Fri, 28 Jun 2013 20:50:15 -0300 Subject: dkms-libre: add new package to libre repo --- libre/dkms-libre/01-broken-uninstall.patch | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 libre/dkms-libre/01-broken-uninstall.patch (limited to 'libre/dkms-libre/01-broken-uninstall.patch') diff --git a/libre/dkms-libre/01-broken-uninstall.patch b/libre/dkms-libre/01-broken-uninstall.patch new file mode 100644 index 000000000..a859efabe --- /dev/null +++ b/libre/dkms-libre/01-broken-uninstall.patch @@ -0,0 +1,22 @@ +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 + } -- cgit v1.2.3-54-g00ecf