From 29b1a0a31355b62fc211a9a3e719a3e5690d6f29 Mon Sep 17 00:00:00 2001 From: Veit Heller Date: Thu, 4 Dec 2014 15:52:17 +0100 Subject: [PATCH] Updated vvm makefile install endpoints --- vvm/Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/vvm/Makefile b/vvm/Makefile index 4ec0560..72ff0b0 100644 --- a/vvm/Makefile +++ b/vvm/Makefile @@ -26,12 +26,12 @@ clean: #Installs into specified(or default) directory install: - install -d $(PREFIX)/vvm - install $(BUILDDIR)$(TARGET) $(PREFIX)/vvm + install -d $(PREFIX)/$(TARGET) + install $(BUILDDIR)$(TARGET) $(PREFIX)/$(TARGET) #Uninstalls from specified(or default)directory uninstall: - rm -rf $(PREFIX)/vvm + rm -rf $(PREFIX)/$(TARGET) #Checks for bad functions BADFUNCS='[^_.>a-zA-Z0-9](str(n?cpy|n?cat|xfrm|n?dup|str|pbrk|tok|_)|stpn?cpy|a?sn?printf|byte_)'