Skip to content

Commit

Permalink
Merge pull request #346 from awiddersheim/build_fixes
Browse files Browse the repository at this point in the history
Output settings after doing a build
  • Loading branch information
jrossi committed Oct 7, 2014
2 parents 7b4db5b + 31d4544 commit d85b532
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -64,10 +64,10 @@ ifeq (${uname_S},FreeBSD)
LDFLAGS+=-pthread
LUA_PLAT=freebsd
else
ifeq (${uname_S},OpenBSD)
ifeq (${uname_S},OpenBSD)
# DEFINES+=-DOpenBSD
DEFINES+=-pthread
LUA_PLAT=posix
DEFINES+=-pthread
LUA_PLAT=posix
else
ifeq (${uname_S},HP-UX)
DEFINES+=-DHPUX
Expand Down Expand Up @@ -262,7 +262,7 @@ endif


.PHONY: build
build:: ${TARGET}
build: ${TARGET} settings
@echo
${QUIET_NOTICE}
@echo "Done building ${TARGET}"
Expand Down Expand Up @@ -307,7 +307,7 @@ install-common: build
install -d -m 0750 -o ${OSSEC_USER} -g ${OSSEC_GROUP} ${PREFIX}/queue/syscheck
install -d -m 0750 -o ${OSSEC_USER_REM} -g ${OSSEC_GROUP} ${PREFIX}/queue/rids
install -d -m 0750 -o ${OSSEC_USER} -g ${OSSEC_GROUP} ${PREFIX}/queue/diff

install -d -m 0550 -o root -g ${OSSEC_GROUP} ${PREFIX}/etc
install -m 0440 -o root -g ${OSSEC_GROUP} /etc/localtime ${PREFIX}/etc
ifneq (,$(wildcard /etc/TIMEZONE))
Expand Down

0 comments on commit d85b532

Please sign in to comment.