MrJoy / ssss

Fork of B. Poettering's SSSS (Shamir's Secret Sharing Scheme)

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Syntax error in Makefile

corywright opened this issue · comments

There is a syntax error in the Makefile on lines 16-19:

nickel ~/repositories/opensource/ssss (master)$ make
cc -W -Wall -O2 -lgmp -o ssss-split ssss.c
strip ssss-split
ln -f ssss-split ssss-combine
if [ `which xmltoman` ]; then xmltoman ssss.manpage.xml > ssss.1; else echo "WARNING: xmltoman not found, skipping generate of man page."; fi
WARNING: xmltoman not found, skipping generate of man page.
if [ -e ssss.1 ]; then
/bin/sh: -c: line 1: syntax error: unexpected end of file
make: *** [ssss.1] Error 2

Hunh. Not sure how I missed that. Thanks!

Fix is landed, closing issue.