mark pwc & shfs as broken (they don't build on 2.6.19)
[openwrt.git] / package / shfs / Makefile
index f4383a3..0ba866b 100644 (file)
@@ -24,6 +24,7 @@ PKG_INSTALL_DIR:=$(PKG_BUILD_DIR)/ipkg-install
 include $(INCLUDE_DIR)/package.mk
 
 define Package/shfs/Default
+  DEPENDS:=@BROKEN
   TITLE:=ShFS
   DESCRIPTION:=\
        ShFS is a simple and easy to use Linux kernel module which allows you to \\\
@@ -37,7 +38,7 @@ define Package/kmod-shfs
   $(call Package/shfs/Default)
   SECTION:=kernel
   CATEGORY:=Kernel drivers
-  DEPENDS:=
+  DEPENDS+=
   TITLE+= (kernel module)
   DESCRIPTION+=\\\
        \\\
@@ -49,7 +50,7 @@ define Package/shfs-utils
   $(call Package/shfs/Default)
   SECTION:=utils
   CATEGORY:=Utilities
-  DEPENDS:=+kmod-shfs
+  DEPENDS+=+kmod-shfs
   TITLE+= (utilities)
   DESCRIPTION+=\\\
        \\\
@@ -77,15 +78,15 @@ define Build/Compile
 endef
 
 define Package/kmod-shfs/install
-       install -m0755 -d $(1)/lib/modules/$(LINUX_VERSION)
+       $(INSTALL_DIR) $(1)/lib/modules/$(LINUX_VERSION)
        $(CP) $(PKG_INSTALL_DIR)/lib/modules/$(LINUX_VERSION)/kernel/fs/shfs/shfs.$(LINUX_KMOD_SUFFIX) \
                $(1)/lib/modules/$(LINUX_VERSION)/
 endef
 
 define Package/shfs-utils/install
-       install -m0755 -d $(1)/usr/bin
+       $(INSTALL_DIR) $(1)/usr/bin
        $(CP) $(PKG_INSTALL_DIR)/usr/bin/shfs{,u}mount $(1)/usr/bin/
-       install -m0755 -d $(1)/sbin
+       $(INSTALL_DIR) $(1)/sbin
        $(CP) $(PKG_INSTALL_DIR)/sbin/mount.shfs $(1)/sbin/
 endef
 
This page took 0.02785 seconds and 4 git commands to generate.