]> git.ipfire.org Git - thirdparty/libbsd.git/commitdiff
Add missing %
authorGuillem Jover <guillem@hadrons.org>
Tue, 14 Feb 2006 05:33:38 +0000 (05:33 +0000)
committerGuillem Jover <guillem@hadrons.org>
Tue, 6 May 2008 05:50:38 +0000 (08:50 +0300)
Makefile

index bdef428ccc025dc0fb585249a584f19c1b10ab16..9ea5e2c9173c642a74d17b1c9e8e1e4b173f4330 100644 (file)
--- 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)