openbsd-ports/misc/tmux/patches/patch-Makefile
naddy 95f99e1887 Fix link order so this will build with static linking.
From: maintainer Nicholas Marriott
2008-08-20 14:57:57 +00:00

13 lines
400 B
Plaintext

$OpenBSD: patch-Makefile,v 1.1 2008/08/20 14:57:57 naddy Exp $
--- Makefile.orig Tue Jul 1 19:59:59 2008
+++ Makefile Thu Aug 7 06:04:16 2008
@@ -92,7 +92,7 @@ CLEANFILES= ${PROG} *.o .depend *~ ${PROG}.core *.log
all: ${PROG}
${PROG}: ${OBJS}
- ${CC} ${LDFLAGS} -o ${PROG} ${LIBS} ${OBJS}
+ ${CC} ${LDFLAGS} -o ${PROG} ${OBJS} ${LIBS}
depend:
mkdep ${CFLAGS} ${INCDIRS} ${SRCS:M*.c}