diff options
Diffstat (limited to 'openwrt/target/linux/linux-2.4')
-rw-r--r-- | openwrt/target/linux/linux-2.4/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/openwrt/target/linux/linux-2.4/Makefile b/openwrt/target/linux/linux-2.4/Makefile index a0d56bfaf2..9f95d721d0 100644 --- a/openwrt/target/linux/linux-2.4/Makefile +++ b/openwrt/target/linux/linux-2.4/Makefile @@ -142,7 +142,7 @@ $(eval $(call KMOD_template,VFAT,vfat,\ $(MODULES_DIR)/kernel/fs/vfat/vfat.o \ $(MODULES_DIR)/kernel/fs/fat/fat.o \ ,CONFIG_VFAT_FS,,30,fat vfat)) -ifneq (${shell ls $(MODULES_DIR)/kernel/crypto/*.o},) +ifneq ($(wildcard $(MODULES_DIR)/kernel/crypto/*.o),) CONFIG_CRYPTO:=m endif $(eval $(call KMOD_template,CRYPTO,crypto,\ @@ -166,7 +166,7 @@ $(eval $(call KMOD_template,TUN,tun,\ $(eval $(call KMOD_template,GRE,gre,\ $(MODULES_DIR)/kernel/net/ipv4/ip_gre.o \ ,CONFIG_NET_IPGRE)) -ifneq (${shell ls $(MODULES_DIR)/kernel/net/sched/*.o},) +ifneq ($(wildcard $(MODULES_DIR)/kernel/net/sched/*.o),) CONFIG_SCHED:=m endif $(eval $(call KMOD_template,SCHED,sched,\ |