From 536402c6630535c0811a5cbda5fbfd5398bfa2f8 Mon Sep 17 00:00:00 2001 From: Stefan Saraev Date: Sat, 20 Jul 2013 19:47:44 +0300 Subject: [PATCH] busybox: make samba support optional --- packages/sysutils/busybox/build | 3 +++ 1 file changed, 3 insertions(+) diff --git a/packages/sysutils/busybox/build b/packages/sysutils/busybox/build index 1303ccdedf..f4c7d1787e 100755 --- a/packages/sysutils/busybox/build +++ b/packages/sysutils/busybox/build @@ -47,6 +47,9 @@ cd $BUILD/busybox* if [ ! "$NFS_SUPPORT" = yes ]; then sed -i -e "s|^CONFIG_FEATURE_MOUNT_NFS=.*$|# CONFIG_FEATURE_MOUNT_NFS is not set|" .config fi + if [ ! "$SAMBA_SUPPORT" = yes ]; then + sed -i -e "s|^CONFIG_FEATURE_MOUNT_CIFS=.*$|# CONFIG_FEATURE_MOUNT_CIFS is not set|" .config + fi make oldconfig