Skip to content

Commit

Permalink
fix make install warning
Browse files Browse the repository at this point in the history
  • Loading branch information
jjezra committed Sep 19, 2020
1 parent 6aa8dc3 commit a0cb4cf
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Makefile
Expand Up @@ -138,7 +138,9 @@ ifeq ("$(wildcard ./slimfastq)","")
@echo "(Note that 'make slimfastq install' would not work as expected)"
@false
else
install -t /usr/local/bin/ ./slimfastq tools/slimfastq.multi
@install -t /usr/local/bin/ ./slimfastq tools/slimfastq.multi 2>/dev/null \
|| cp ./slimfastq tools/slimfastq.multi /usr/local/bin/ \
|| echo "failed to install, please use ./slimfastq and tools/slimfastq.multi in place, or copy them to your lookup path"
@echo "\nAll done!"
endif

Expand Down

0 comments on commit a0cb4cf

Please sign in to comment.