From 8bf8d7ff4074533376589bc9e6e48b02ecb91dcd Mon Sep 17 00:00:00 2001 From: Giuseppe Date: Sat, 24 Feb 2018 13:48:11 +0100 Subject: [PATCH] Fix wrong `make uninstall` command (#9494) It tried to cd to a no longer-existent directory, using a never existed `./libr/sysregs/d/Makefile` --- Makefile | 1 - 1 file changed, 1 deletion(-) diff --git a/Makefile b/Makefile index 6ba116568a11d..7ec0173a9ea0d 100644 --- a/Makefile +++ b/Makefile @@ -278,7 +278,6 @@ deinstall uninstall: cd binr && ${MAKE} uninstall PARENT=1 cd shlr && ${MAKE} uninstall PARENT=1 cd libr/syscall/d && ${MAKE} uninstall PARENT=1 - cd libr/sysregs/d && ${MAKE} uninstall PARENT=1 cd libr/anal/d && ${MAKE} uninstall PARENT=1 @echo @echo "Run 'make purge' to also remove installed files from previous versions of r2"