summaryrefslogtreecommitdiff
path: root/games/thew/patches
diff options
context:
space:
mode:
authordholland <dholland>2012-05-23 06:29:58 +0000
committerdholland <dholland>2012-05-23 06:29:58 +0000
commit4fd2fb6880874f9f47a70b889f688cefd5c5f715 (patch)
treec42e1f0e233b1477b0aadffa7e7e9a6cc21ee2ed /games/thew/patches
parent41faa9b3f43ccb828acd5beb9244fd69f6f08aa2 (diff)
downloadpkgsrc-4fd2fb6880874f9f47a70b889f688cefd5c5f715.tar.gz
Honor LDFLAGS. Should fix Linux build.
Diffstat (limited to 'games/thew/patches')
-rw-r--r--games/thew/patches/patch-Makefile10
1 files changed, 10 insertions, 0 deletions
diff --git a/games/thew/patches/patch-Makefile b/games/thew/patches/patch-Makefile
new file mode 100644
index 00000000000..e9ce211506a
--- /dev/null
+++ b/games/thew/patches/patch-Makefile
@@ -0,0 +1,10 @@
+$NetBSD: patch-Makefile,v 1.1 2012/05/23 06:29:58 dholland Exp $
+
+--- Makefile~ 2006-08-27 15:36:17.000000000 +0000
++++ Makefile
+@@ -6,4 +6,4 @@ SRCS= ${PROG}.c
+ LIBS+= -lcurses
+
+ all:
+- ${CC} ${SRCS} -o ${PROG} ${LIBS}
++ ${CC} ${LDFLAGS} ${SRCS} -o ${PROG} ${LIBS}