Skip to content

Commit 443fc11

Browse files
committed
package: drop creating spurious tmp directory in feed directory
In implementing APK support it seems a a leftover was never removed that creates an unused tmp directory in the package feed directory. Drop it as it's not used anywhere. What is actually needed is the creation of the $$(PDIR_$(1)) directory for the feed package directory in the bin/packages directory. This was a side effect of using INSTALL_DIR on $$(PDIR_$(1))/tmp that indirectly creates the $$(PDIR_$(1)) parent directory. Fixes: d788ab3 ("build: add APK package build capabilities") Signed-off-by: Christian Marangi <[email protected]> (cherry picked from commit f9802d7)
1 parent 444299d commit 443fc11

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

include/package-pack.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -248,7 +248,7 @@ endif
248248
)
249249
endif
250250

251-
$(INSTALL_DIR) $$(PDIR_$(1))/tmp
251+
$(INSTALL_DIR) $$(PDIR_$(1))
252252

253253
ifeq ($(CONFIG_USE_APK),)
254254
mkdir -p $$(IDIR_$(1))/CONTROL

0 commit comments

Comments
 (0)