From: Guillem Jover Date: Tue, 14 Feb 2006 05:33:38 +0000 (+0000) Subject: Add missing % X-Git-Tag: 0.0~66 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6be6380e10b4f87575060e7839e530642a0182fa;p=thirdparty%2Flibbsd.git Add missing % --- diff --git a/Makefile b/Makefile index bdef428..9ea5e2c 100644 --- a/Makefile +++ b/Makefile @@ -8,11 +8,11 @@ LIB_SRCS = arc4random.c bsd_getopt.c err.c fgetln.c inet_net_pton.c \ strlcat.c strlcpy.c md5c.c fmtcheck.c LIB_INCLUDES := err.h getopt.h ip_icmp.h random.h queue.h md5.h string.h \ - bsd.h stdlib.h -LIB_INCLUDES := $(patsubst %,include/bsd/,$(LIB_INCLUDES)) + bsd.h stdlib.h +LIB_INCLUDES := $(patsubst %,include/bsd/%,$(LIB_INCLUDES)) LIB_MANS := arc4random.3 strlcpy.3 fgetln.3 fmtcheck.3 -LIB_MANS := $(patsubst %,man/,$(LIB_MANS)) +LIB_MANS := $(patsubst %,man/%,$(LIB_MANS)) LIB_STATIC_OBJS = $(LIB_SRCS:%.c=%.o) LIB_SHARED_OBJS = $(LIB_SRCS:%.c=%.lo)