Fix building in kFreeBSD

broken in 8c218bd5
This commit is contained in:
Kill Your TV 2014-12-18 10:11:18 +00:00
parent b343c24a9f
commit e5c2022f71
2 changed files with 2 additions and 2 deletions

View file

@ -1,6 +1,7 @@
UNAME := $(shell uname -s)
SHLIB := libi2pd.so
I2PD := i2p
GREP := fgrep
include filelist.mk
@ -10,7 +11,7 @@ USE_STATIC := no
ifeq ($(UNAME),Darwin)
DAEMON_SRC += DaemonLinux.cpp
include Makefile.osx
else ifeq ($(UNAME),FreeBSD)
else ifeq ($(shell echo $(UNAME) | $(GREP) -c FreeBSD),1)
DAEMON_SRC += DaemonLinux.cpp
include Makefile.bsd
else ifeq ($(UNAME),Linux)