missing -p on mkdir command

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@7469 3c298f89-4303-0410-b956-a3cf2f4a3e73
master
John Crispin 2007-06-03 01:38:03 +00:00
parent f281dd316d
commit 89c60b2650
1 changed files with 2 additions and 2 deletions

View File

@ -38,8 +38,8 @@ endef
define Package/foxboard-utils/install define Package/foxboard-utils/install
$(INSTALL_DIR) $(1)/ $(INSTALL_DIR) $(1)/
$(CP) $(PKG_INSTALL_DIR)/* $(1) $(CP) $(PKG_INSTALL_DIR)/* $(1)
mkdir $(1)/www/cgi mkdir -p $(1)/www/cgi-bin
cd $(1)/www/cgi; ln -s ../../bin/edit.cgi . cd $(1)/www/cgi-bin; ln -s ../../bin/editcgi.cgi .
endef endef
$(eval $(call BuildPackage,foxboard-utils)) $(eval $(call BuildPackage,foxboard-utils))