dedup

deduplicating backup program
git clone git://git.2f30.org/dedup
Log | Files | Refs | README | LICENSE

commit e5a0b651bfa86129be13be7a3bf5fe65f0700338
parent 0aab9028e974842e523f3e9ccfd06e9949c32efb
Author: sin <sin@2f30.org>
Date:   Thu, 25 Apr 2019 14:18:02 +0100

Add /usr/local/{include,lib} to CPPFLAGS/LDFLAGS

Makes it compile on *BSD without changing config.mk.

Diffstat:
Mconfig.mk | 3++-
1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/config.mk b/config.mk @@ -2,4 +2,5 @@ VERSION = 1.0 PREFIX = /usr/local MANPREFIX = $(PREFIX)/man -CPPFLAGS = -D_FILE_OFFSET_BITS=64 +CPPFLAGS = -I/usr/local/include -D_FILE_OFFSET_BITS=64 +LDFLAGS = -L/usr/local/lib