diff options
author | Felix Fietkau <nbd@openwrt.org> | 2014-03-30 19:55:39 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2014-03-30 19:55:39 +0000 |
commit | 34ce786a32962c802ecb605708934503d6812be3 (patch) | |
tree | 5c2531128f5235be75c1b0b24dc853c697a0a2fb /package/boot | |
parent | 111e9f18883849552a2e09a149e676f67348aa2f (diff) | |
download | upstream-34ce786a32962c802ecb605708934503d6812be3.tar.gz upstream-34ce786a32962c802ecb605708934503d6812be3.tar.bz2 upstream-34ce786a32962c802ecb605708934503d6812be3.zip |
grub2: disable libdevmapper - fix build when it's available
Signed-off-by: Alexander Couzens <lynxis@fe80.eu>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@40349 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/boot')
-rw-r--r-- | package/boot/grub2/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/package/boot/grub2/Makefile b/package/boot/grub2/Makefile index 6b4cc7d70b..ccad7d921c 100644 --- a/package/boot/grub2/Makefile +++ b/package/boot/grub2/Makefile @@ -46,7 +46,8 @@ endef CONFIGURE_ARGS += \ --target=$(REAL_GNU_TARGET_NAME) \ --disable-werror \ - --disable-nls + --disable-nls \ + --disable-device-mapper HOST_CONFIGURE_ARGS += \ --target=$(REAL_GNU_TARGET_NAME) \ |