From 8198b3a2ec6da8a0d726491e36826356aa1157d0 Mon Sep 17 00:00:00 2001 From: Ben Cartwright-Cox Date: Mon, 23 Jan 2023 14:39:27 +0000 Subject: [PATCH] Fix RPM packages not being put in the artifact directories Seemingly a FPM bug? I poked around in FPM for a while and /could not/ get it to actually use --package at all, nor it's little -P. So a quite move back into place should solve it instead. Mildly Related Tag: https://github.com/bgp/stayrtr/issues/58 --- Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/Makefile b/Makefile index e19b7f7..0989171 100644 --- a/Makefile +++ b/Makefile @@ -94,3 +94,4 @@ package-rpm-stayrtr: prepare package/stayrtr.env=/etc/default/stayrtr \ $(OUTPUT_RTRDUMP)=/usr/bin/rtrdump \ $(OUTPUT_RTRMON)=/usr/bin/rtrmon + mv *.rpm dist/ # It's unclear why we need to do this, but i assume it's a FPM bug.