diff options
author | John Crispin <john@openwrt.org> | 2007-06-03 01:38:03 +0000 |
---|---|---|
committer | John Crispin <john@openwrt.org> | 2007-06-03 01:38:03 +0000 |
commit | 193ef22310ec0468cc74ca446a906034ddbb3a81 (patch) | |
tree | c2564f3d6b0d438a3a09a120564fcb866c704482 /package | |
parent | 07de47994826cd73af54705cdd24398a391d1e1d (diff) | |
download | upstream-193ef22310ec0468cc74ca446a906034ddbb3a81.tar.gz upstream-193ef22310ec0468cc74ca446a906034ddbb3a81.tar.bz2 upstream-193ef22310ec0468cc74ca446a906034ddbb3a81.zip |
missing -p on mkdir command
SVN-Revision: 7469
Diffstat (limited to 'package')
-rw-r--r-- | package/foxboard-utils/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/package/foxboard-utils/Makefile b/package/foxboard-utils/Makefile index c2ff1d1133..f5d9aa7934 100644 --- a/package/foxboard-utils/Makefile +++ b/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)) |