diff options
-rw-r--r-- | package/ffmpeg/Makefile | 1 | ||||
-rw-r--r-- | target/linux/config/Config.in.network | 2 | ||||
-rw-r--r-- | target/tools/grub/Makefile | 2 |
3 files changed, 3 insertions, 2 deletions
diff --git a/package/ffmpeg/Makefile b/package/ffmpeg/Makefile index 3a392abbb..f0140d916 100644 --- a/package/ffmpeg/Makefile +++ b/package/ffmpeg/Makefile @@ -61,6 +61,7 @@ CONFIGURE_ARGS:= --prefix=/usr \ --cross-prefix=${TARGET_CROSS} \ --cc=$(TARGET_CC) \ --host-cc=$(HOSTCC) \ + --disable-doc \ --disable-debug \ --disable-optimizations \ --disable-stripping \ diff --git a/target/linux/config/Config.in.network b/target/linux/config/Config.in.network index 71176417f..1cfd5eac5 100644 --- a/target/linux/config/Config.in.network +++ b/target/linux/config/Config.in.network @@ -215,7 +215,7 @@ config ADK_KPACKAGE_KMOD_PPP_MPPE select ADK_KERNEL_CRYPTO select ADK_KPACKAGE_KMOD_CRYPTO_ARC4 select ADK_KPACKAGE_KMOD_CRYPTO_SHA1 - select ADK_KPACKAGE_KMOD_CRYPTO_ECB if ADK_LINUX_2_6 + select ADK_KPACKAGE_KMOD_CRYPTO_ECB help Support for the MPPE Encryption protocol, as employed by the Microsoft Point-to-Point Tunneling Protocol. diff --git a/target/tools/grub/Makefile b/target/tools/grub/Makefile index 95d7b2397..58a3b822c 100644 --- a/target/tools/grub/Makefile +++ b/target/tools/grub/Makefile @@ -12,7 +12,7 @@ PKG_SITES:= ftp://alpha.gnu.org/gnu/grub/ include ../rules.mk $(WRKBUILD)/.compiled: ${WRKDIST}/.prepared - cd $(WRKBUILD) && ./configure --prefix=$(TOPDIR)/bin/tools + cd $(WRKBUILD) && ./configure --prefix=$(TOPDIR)/bin/tools --disable-nls --disable-efiemu --with-platform=pc $(MAKE) -C $(WRKBUILD) touch $@ |