From 33774cab7f3d6a28d08423a15125b7e87b8364ec Mon Sep 17 00:00:00 2001 From: "Karl O. Pinc" Date: Sat, 4 Jan 2025 14:42:33 -0600 Subject: [PATCH] Fix cleanup of generated scripts --- make_files/make_commands.mk | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/make_files/make_commands.mk b/make_files/make_commands.mk index 628401c..da4bcf9 100644 --- a/make_files/make_commands.mk +++ b/make_files/make_commands.mk @@ -1,4 +1,4 @@ -# Copyright (C) 2023, 2024 The Meme Factory, Inc. www.karlpinc.com +# Copyright (C) 2023, 2024, 2025 The Meme Factory, Inc. www.karlpinc.com # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as @@ -43,7 +43,7 @@ install-w-permissions: install-commands set-permissions ## clean-commands Remove all the generated command related files .PHONY: clean-commands clean-commands: - rm -rf $(CMD_SCRIPTS) + rm -rf $(addprefix bin/,$(CMD_SCRIPTS)) ## ## Lesser used targets are: -- 2.34.1