From bc12ad2d34d730a9a95e69d6902b192725a9595a Mon Sep 17 00:00:00 2001 From: frankmorgner Date: Tue, 24 Apr 2012 11:37:39 +0000 Subject: [PATCH] fixed error on cleaning missing libnfc git-svn-id: https://vsmartcard.svn.sourceforge.net/svnroot/vsmartcard@778 96b47cad-a561-4643-ad3b-153ac7d7599c --- pcsc-relay/win32/Makefile.am | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pcsc-relay/win32/Makefile.am b/pcsc-relay/win32/Makefile.am index fc82c4b..ea1750c 100644 --- a/pcsc-relay/win32/Makefile.am +++ b/pcsc-relay/win32/Makefile.am @@ -43,7 +43,8 @@ win: $(PCSC_RELAY_EXE) clean-local: rm -rf $(IMAGE) $(WIN32_DIR) - make -C $(LIBNFC_DIR) clean + test ! -d $(LIBNFC_DIR) || \ + make -C $(LIBNFC_DIR) clean distclean-local: rm -rf $(LIBNFC_DIR)