From 6be0dc9085d1d762d62518216d59e9aa2939796f Mon Sep 17 00:00:00 2001 From: Emery Hemingway Date: Sat, 16 Mar 2019 17:09:56 +0100 Subject: [PATCH] Fix libretro raw packaging --- libretro/cores/Tuprules.tup | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/libretro/cores/Tuprules.tup b/libretro/cores/Tuprules.tup index c47119f..ee08959 100644 --- a/libretro/cores/Tuprules.tup +++ b/libretro/cores/Tuprules.tup @@ -31,7 +31,7 @@ DEPOT_NAME = libretro-$(TARGET_NAME) |> $(DEPOT_BIN_DIR)/$(DEPOT_NAME)/@(DEPOT_VERSION)/%b\ !publish_core_raw = |> ^o copy %b^ cp %f %o \ - |> $(DEPOT_RAW_DIR)/$(DEPOT_NAME)/%b + |> $(DEPOT_RAW_DIR)/$(DEPOT_NAME)/@(DEPOT_VERSION)/%b !publish_core_archives = |> ^ varse archives^ \ tup varsed %f %o ; \ @@ -54,17 +54,17 @@ ifndef DEPOT_KEY else !core_publish_bin = |> ^o archive binaries^ \ - tar cfJ %o -C $(DEPOT_BIN_DIR)/$(DEPOT_NAME) . ; $(SIGN_CMD) < %o > %o.sig \ + tar cfJ %o -C $(DEPOT_BIN_DIR)/$(DEPOT_NAME) @(DEPOT_VERSION) ; $(SIGN_CMD) < %o > %o.sig \ |> $(PUBLIC_BIN_DIR)/$(DEPOT_NAME)/@(DEPOT_VERSION).tar.xz \ | $(PUBLIC_BIN_DIR)/$(DEPOT_NAME)/@(DEPOT_VERSION).tar.xz.sig !core_publish_pkg = |> ^o archive package metadata^ \ - tar cfJ %o -C $(DEPOT_PKG_DIR)/$(TARGET_NAME) . ; $(SIGN_CMD) < %o > %o.sig \ + tar cfJ %o -C $(DEPOT_PKG_DIR)/$(TARGET_NAME) @(DEPOT_VERSION) ; $(SIGN_CMD) < %o > %o.sig \ |> $(PUBLIC_PKG_DIR)/$(TARGET_NAME)/@(DEPOT_VERSION).tar.xz \ | $(PUBLIC_PKG_DIR)/$(TARGET_NAME)/@(DEPOT_VERSION).tar.xz.sig !core_publish_raw = |> ^o archive raw files^ \ - tar cfJ %o -C $(DEPOT_RAW_DIR)/$(DEPOT_NAME) . ; $(SIGN_CMD) < %o > %o.sig \ + tar cfJ %o -C $(DEPOT_RAW_DIR)/$(DEPOT_NAME) @(DEPOT_VERSION) ; $(SIGN_CMD) < %o > %o.sig \ |> $(PUBLIC_RAW_DIR)/$(DEPOT_NAME)/@(DEPOT_VERSION).tar.xz \ | $(PUBLIC_RAW_DIR)/$(DEPOT_NAME)/@(DEPOT_VERSION).tar.xz.sig