F
fda
Guest
Ist hinter dem "dd if= " wirklich ein Leerzeichen?
Falls ja ersetz mal in make/sundtek/sundtek.mk, Zeile 34 das "strip " durch "call qstrip," und nochmal "make sundtek-precompiled "
Falls ja ersetz mal in make/sundtek/sundtek.mk, Zeile 34 das "strip " durch "call qstrip," und nochmal "make sundtek-precompiled "
Code:
--- make/sundtek/sundtek.mk
+++ make/sundtek/sundtek.mk
@@ -31,7 +31,7 @@
define $(PKG)_CUSTOM_UNPACK
mkdir -p $($(PKG)_DIR); \
payload="$$$$(cat $(1) | sed -rn 's!^_SIZE=(.*)!\1!p')"; \
- dd if=$(strip $(1)) skip=1 bs=$$$$payload | \
+ dd if=$(call qstrip,$(1)) skip=1 bs=$$$$payload | \
$(TAR) Oxz $($(PKG)_ARCH)/installer.tar.gz | \
$(TAR) xz -C $($(PKG)_DIR)
endef