summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthew Monaco <matthew.monaco@0x01b.net>2012-05-03 00:55:17 +0200
committerDave Reisner <dreisner@archlinux.org>2012-05-03 03:40:26 +0200
commitaed49d50007f8070557d2930fe31e1a0ef338c52 (patch)
tree97ce70827f7cc8e9e99a072e3d98850137db7c43
parent25e8e2078610025ce52d90b55997d413f0b88bd4 (diff)
downloadmkinitcpio-aed49d50007f8070557d2930fe31e1a0ef338c52.tar.gz
mkinitcpio-aed49d50007f8070557d2930fe31e1a0ef338c52.tar.xz
functions: firmware is now in /usr/lib
-rw-r--r--functions4
1 files changed, 2 insertions, 2 deletions
diff --git a/functions b/functions
index 127a830..0fec85b 100644
--- a/functions
+++ b/functions
@@ -333,8 +333,8 @@ add_module() {
done
;;
firmware)
- if [[ -e "$BASEDIR/lib/firmware/$value" ]]; then
- _add_file "/lib/firmware/$value" "$BASEDIR/lib/firmware/$value" 644
+ if [[ -e "$BASEDIR/usr/lib/firmware/$value" ]]; then
+ _add_file "/usr/lib/firmware/$value" "$BASEDIR/usr/lib/firmware/$value" 644
fi
;;
esac