[packages] massive: use $(INSTALL_DIR) instead of 'mkdir -p' in install and InstallDev
[openwrt/svn-archive/archive.git] / libs / libdvdread / Makefile
index c251ba9ea4b935706d7b5b181efc2acef4791b96..66a52243efa82d56b13d93666b1abe00209e73f6 100644 (file)
@@ -47,10 +47,10 @@ define Build/Compile
 endef
 
 define Build/InstallDev
-       mkdir -p $(1)/usr/include/dvdread
+       $(INSTALL_DIR) $(1)/usr/include/dvdread
        $(CP)   $(PKG_INSTALL_DIR)/usr/include/dvdread/*.h \
                $(1)/usr/include/dvdread
-       mkdir -p $(1)/usr/lib
+       $(INSTALL_DIR) $(1)/usr/lib
        $(CP)   $(PKG_INSTALL_DIR)/usr/lib/libdvdread.{a,so*} \
                $(1)/usr/lib/
 endef