emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[elpa] externals/csharp-mode 831bd53 108/459: Fix "make clean".


From: ELPA Syncer
Subject: [elpa] externals/csharp-mode 831bd53 108/459: Fix "make clean".
Date: Sun, 22 Aug 2021 13:59:06 -0400 (EDT)

branch: externals/csharp-mode
commit 831bd531c86a0ea942d004c80072bada699026a8
Author: Jostein Kjønigsen <jostein@kjonigsen.net>
Commit: Jostein Kjønigsen <jostein@kjonigsen.net>

    Fix "make clean".
    
    Make clean never cleaned byte-compiled elisp files causing "make test"
    to often fail due to loading old code.
---
 makefile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/makefile b/makefile
index 061ce26..654c093 100644
--- a/makefile
+++ b/makefile
@@ -27,6 +27,6 @@ test:
 clean:
        rm -f ../$(PACKAGE_NAME).tar
        rm -rf $(PACKAGE_DIR)
-       rm -rf $ELCS
+       rm -rf $(ELCS)
 
 # end



reply via email to

[Prev in Thread] Current Thread [Next in Thread]