Browse Source

missing -p on mkdir command

SVN-Revision: 7469
John Crispin 18 years ago
parent
commit
193ef22310
1 changed files with 2 additions and 2 deletions
  1. 2 2
      package/foxboard-utils/Makefile

+ 2 - 2
package/foxboard-utils/Makefile

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