Browse Source

Do not fail if qmake-generated binary is not just starpu_top$(EXEEXT)

Samuel Thibault 11 years ago
parent
commit
4a59e3f481
1 changed files with 1 additions and 1 deletions
  1. 1 1
      Makefile.am

+ 1 - 1
Makefile.am

@@ -103,7 +103,7 @@ clean-local:
 # TODO: resources
 install-exec-local:
 	$(MKDIR_P) $(DESTDIR)$(bindir)
-	$(INSTALL_STRIP_PROGRAM) starpu-top/starpu_top$(EXEEXT) $(DESTDIR)$(bindir)
+	-$(INSTALL_STRIP_PROGRAM) starpu-top/starpu_top$(EXEEXT) $(DESTDIR)$(bindir)
 uninstall-local:
 	$(RM) $(DESTDIR)$(bindir)/starpu_top$(EXEEXT)
 	$(RM) starpu-top/starpu_top$(EXEEXT)