diff options
author | thepeople <thepeople@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2008-07-29 12:57:43 +0000 |
---|---|---|
committer | thepeople <thepeople@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2008-07-29 12:57:43 +0000 |
commit | 227367d3a32d0593c717a1cf00447df83752bbd7 (patch) | |
tree | d085bb168f9f5148105508176d6b5b35240d5e35 /package/opkg/Makefile | |
parent | a2110d5d1f134a65b9959d3b74c3bcefbc0ff6c1 (diff) |
removed a missed dependancy on curl
remove use of autogen, just run the one needed command from in it
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@11991 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/opkg/Makefile')
-rw-r--r-- | package/opkg/Makefile | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/package/opkg/Makefile b/package/opkg/Makefile index ab41ac099..45010c7f3 100644 --- a/package/opkg/Makefile +++ b/package/opkg/Makefile @@ -22,7 +22,6 @@ include $(INCLUDE_DIR)/package.mk define Package/opkg SECTION:=base CATEGORY:=Base system - DEPENDS:=+libcurl TITLE:=opkg package management system URL:=http://wiki.openmoko.org/wiki/Opkg endef @@ -46,7 +45,7 @@ CONFIGURE_ARGS += \ define Build/Configure (cd $(PKG_BUILD_DIR); \ - ./autogen.sh \ + autoreconf -v --install || exit 1 \ ); $(call Build/Configure/Default) endef |