projects
/
openwrt.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
9cbba08
)
only define unpack templates if PKG_SOURCE is set
author
nbd
<nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73>
Sun, 22 Feb 2009 18:27:53 +0000
(18:27 +0000)
committer
nbd
<nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73>
Sun, 22 Feb 2009 18:27:53 +0000
(18:27 +0000)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@14623
3c298f89
-4303-0410-b956-
a3cf2f4a3e73
include/unpack.mk
patch
|
blob
|
history
diff --git
a/include/unpack.mk
b/include/unpack.mk
index
ae8cdec
..
e281094
100644
(file)
--- a/
include/unpack.mk
+++ b/
include/unpack.mk
@@
-16,7
+16,8
@@
UNZIP_CMD=unzip -d $(1)/.. $(DL_DIR)/$(PKG_SOURCE)
ifeq ($(PKG_SOURCE),)
PKG_UNPACK ?= true
-endif
+else
+
ifeq ($(strip $(UNPACK_CMD)),)
ifeq ($(strip $(PKG_CAT)),)
# try to autodetect file type
@@
-64,9
+65,13
@@
ifeq ($(strip $(UNPACK_CMD)),)
CRLF_CMD :=
endif
endif
+
ifdef PKG_BUILD_DIR
PKG_UNPACK := $(call UNPACK_CMD,$(PKG_BUILD_DIR)) $(call CRLF_CMD,$(PKG_BUILD_DIR))
endif
ifdef HOST_BUILD_DIR
HOST_UNPACK := $(call UNPACK_CMD,$(HOST_BUILD_DIR)) $(call CRLF_CMD,$(HOST_BUILD_DIR))
endif
+
+endif # PKG_SOURCE
+
This page took
0.023815 seconds
and
4
git commands to generate.