diff options
author | Nicolas Thill <nico@openwrt.org> | 2006-10-22 21:15:55 +0000 |
---|---|---|
committer | Nicolas Thill <nico@openwrt.org> | 2006-10-22 21:15:55 +0000 |
commit | ed081b6cd3ea85789e6dde22b0c84f12b839c875 (patch) | |
tree | 2e7956124d10130bd642aa479e2368a64ffcd221 /include/package.mk | |
parent | 440fef816e81256780c36ac22c5218f525ccd5f5 (diff) | |
download | upstream-ed081b6cd3ea85789e6dde22b0c84f12b839c875.tar.gz upstream-ed081b6cd3ea85789e6dde22b0c84f12b839c875.tar.bz2 upstream-ed081b6cd3ea85789e6dde22b0c84f12b839c875.zip |
strip third arg (dir name) to Build/Configure/Default macro
SVN-Revision: 5261
Diffstat (limited to 'include/package.mk')
-rw-r--r-- | include/package.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/package.mk b/include/package.mk index 01781c71c7..5636b0b6a1 100644 --- a/include/package.mk +++ b/include/package.mk @@ -290,7 +290,7 @@ define Build/Prepare endef define Build/Configure/Default - (cd $(PKG_BUILD_DIR)/$(3); \ + (cd $(PKG_BUILD_DIR)/$(strip $(3)); \ if [ -x configure ]; then \ $(TARGET_CONFIGURE_OPTS) \ CFLAGS="$(TARGET_CFLAGS)" \ |