bartobri / no-more-secrets

A command line tool that recreates the famous data decryption effect seen in the 1992 movie Sneakers.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

will not install on fedora.

coder-path opened this issue · comments

here is the error messages.

[tomc@fedora ~]$ git clone https://github.com/bartobri/no-more-secrets.git
cd ./no-more-secrets
make nms
make sneakers             ## Optional
sudo make install
fatal: destination path 'no-more-secrets' already exists and is not an empty directory.
cc -Wextra -Wall -O2 -o obj/input.o -c src/input.c
make: cc: No such file or directory
make: *** [Makefile:37: obj/input.o] Error 127
cc -Wextra -Wall -O2 -o obj/nmscharset.o -c src/nmscharset.c
make: cc: No such file or directory
make: *** [Makefile:37: obj/nmscharset.o] Error 127
install -d /usr/local/share/man/man6
install -m644 nms.6 sneakers.6 /usr/local/share/man/man6 
install -d /usr/local/bin
cd bin && install * /usr/local/bin
/bin/sh: line 1: cd: bin: No such file or directory
make: *** [Makefile:53: install] Error 1
[tomc@fedora no-more-secrets]$ 

Hi @coder-path

Your term output suggests that you are not executing the install commands one at a time, as I do not see a command prompt in-between them. It looks like you copied them all and pasted them all at once. Try again but only run one at a time, and do not include the comment that is not intended to be part of the command (## Optional).

Be sure to delete the directory "no-more-secrets" before attempting to re-clone it from git.

Thanks,
Brian