Fix sed call in Makefile

This commit is contained in:
jsteube 2016-06-11 11:39:49 +02:00
parent f600b9dd59
commit aa78cf2c74
4 changed files with 6 additions and 6 deletions

View File

@ -1 +1 @@
./hashcat64.bin -t 32 -a 7 example0.hash ?a?a?a?a example.dict
./hashcat -t 32 -a 7 example0.hash ?a?a?a?a example.dict

View File

@ -1 +1 @@
cat example.dict | ./hashcat64.bin -m 400 example400.hash
cat example.dict | ./hashcat -m 400 example400.hash

View File

@ -1 +1 @@
./hashcat64.bin -m 500 example500.hash example.dict
./hashcat -m 500 example500.hash example.dict

View File

@ -228,9 +228,9 @@ install: native
$(FIND) masks/ -type f -exec $(INSTALL) -m 644 {} $(DESTDIR)$(SHARED_FOLDER)/{} \;
$(FIND) OpenCL/ -type f -exec $(INSTALL) -m 644 {} $(DESTDIR)$(SHARED_FOLDER)/{} \;
$(FIND) rules/ -type f -exec $(INSTALL) -m 644 {} $(DESTDIR)$(SHARED_FOLDER)/{} \;
$(SED) -i 's/^..hashcat64.bin/hashcat/' $(DESTDIR)$(DOCUMENT_FOLDER)/example0.sh
$(SED) -i 's/^..hashcat64.bin/hashcat/' $(DESTDIR)$(DOCUMENT_FOLDER)/example400.sh
$(SED) -i 's/^..hashcat64.bin/hashcat/' $(DESTDIR)$(DOCUMENT_FOLDER)/example500.sh
$(SED) -i 's/\.\/hashcat/hashcat/' $(DESTDIR)$(DOCUMENT_FOLDER)/example0.sh
$(SED) -i 's/\.\/hashcat/hashcat/' $(DESTDIR)$(DOCUMENT_FOLDER)/example400.sh
$(SED) -i 's/\.\/hashcat/hashcat/' $(DESTDIR)$(DOCUMENT_FOLDER)/example500.sh
uninstall:
$(RM) -f $(DESTDIR)$(INSTALL_FOLDER)/$(BINARY_NATIVE)