From 9e943e852286d1f3f14b7f55e96c1e550affe571 Mon Sep 17 00:00:00 2001 From: "Yann E. MORIN" Date: Sun, 1 Oct 2017 17:21:30 +0200 Subject: [PATCH] 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 --- package/urg/urg.mk | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) 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)) -- 2.30.2