From: Yann E. MORIN Date: Sun, 1 Oct 2017 15:21:30 +0000 (+0200) Subject: package/urg: fix extraction commands X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=9e943e852286d1f3f14b7f55e96c1e550affe571;p=buildroot.git package/urg: fix extraction commands Currently, the extraction commands entirely remove the urg directory, which means the downloaded stamp will get removed, and thus a subsequent build would try to re-download it. It turns out that the directory extracted by urg is already correctly named, so we just need to extract out of the build directory. This highly simplifies the command. Signed-off-by: "Yann E. MORIN" Cc: Samuel Martin Signed-off-by: Peter Korsgaard --- diff --git a/package/urg/urg.mk b/package/urg/urg.mk index 4a41779709..966627fe36 100644 --- a/package/urg/urg.mk +++ b/package/urg/urg.mk @@ -25,10 +25,7 @@ endif URG_CONFIG_SCRIPTS = c_urg-config urg-config define URG_EXTRACT_CMDS - $(RM) -rf $(URG_DIR) - $(UNZIP) -d $(BUILD_DIR)/ $(DL_DIR)/$(URG_SOURCE) - test -d $(URG_DIR) || \ - mv $(BUILD_DIR)/$(subst .zip,,$(URG_SOURCE)) $(URG_DIR) + $(UNZIP) -d $(BUILD_DIR) $(DL_DIR)/$(URG_SOURCE) endef $(eval $(autotools-package))