From 9ecc20f1bbf2b212a4b523da51787dd6c80a357d Mon Sep 17 00:00:00 2001 From: Nguyen Anh Quynh Date: Wed, 19 Dec 2018 09:21:07 +0700 Subject: [PATCH] Makefile: more fix for #1312 --- Makefile | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Makefile b/Makefile index 060b8134a..1d3c9f222 100644 --- a/Makefile +++ b/Makefile @@ -409,15 +409,15 @@ ifeq ($(CAPSTONE_STATIC),yes) endif mkdir -p $(DESTDIR)$(INCDIR)/$(LIBNAME) $(INSTALL_DATA) include/capstone/*.h $(DESTDIR)$(INCDIR)/$(LIBNAME) - mkdir -p $(DESTDIR)$(PKGCFGDIR) - $(INSTALL_DATA) $(PKGCFGF) $(DESTDIR)$(PKGCFGDIR) - mkdir -p $(DESTDIR)$(BINDIR) - $(INSTALL_LIB) cstool/cstool $(DESTDIR)$(BINDIR) + mkdir -p $(PKGCFGDIR) + $(INSTALL_DATA) $(PKGCFGF) $(PKGCFGDIR) + mkdir -p $(BINDIR) + $(INSTALL_LIB) cstool/cstool $(BINDIR) uninstall: rm -rf $(DESTDIR)$(INCDIR)/$(LIBNAME) rm -f $(DESTDIR)$(LIBDIR)/lib$(LIBNAME).* - rm -f $(DESTDIR)$(PKGCFGDIR)/$(LIBNAME).pc + rm -f $(PKGCFGDIR)/$(LIBNAME).pc rm -f $(DESTDIR)$(BINDIR)/cstool clean: