diff options
author | dholland <dholland@pkgsrc.org> | 2012-05-23 06:29:58 +0000 |
---|---|---|
committer | dholland <dholland@pkgsrc.org> | 2012-05-23 06:29:58 +0000 |
commit | e5eb03a5f6a68126196ec7eba56e8f3b890015f8 (patch) | |
tree | c42e1f0e233b1477b0aadffa7e7e9a6cc21ee2ed /games | |
parent | 7ae3456c0ec011336648982b0b0f4376b4240101 (diff) | |
download | pkgsrc-e5eb03a5f6a68126196ec7eba56e8f3b890015f8.tar.gz |
Honor LDFLAGS. Should fix Linux build.
Diffstat (limited to 'games')
-rw-r--r-- | games/thew/distinfo | 3 | ||||
-rw-r--r-- | games/thew/patches/patch-Makefile | 10 |
2 files changed, 12 insertions, 1 deletions
diff --git a/games/thew/distinfo b/games/thew/distinfo index 67927064bc4..fefd8df111f 100644 --- a/games/thew/distinfo +++ b/games/thew/distinfo @@ -1,5 +1,6 @@ -$NetBSD: distinfo,v 1.1.1.1 2007/11/03 18:14:20 rillig Exp $ +$NetBSD: distinfo,v 1.2 2012/05/23 06:29:58 dholland Exp $ SHA1 (thew-1.1.1.tar.bz2) = a663715d4e15f38b482934845d501f0461d2cb7f RMD160 (thew-1.1.1.tar.bz2) = d21e93a416f60d2ef8ee0f4d43dfaf532f56bb53 Size (thew-1.1.1.tar.bz2) = 5953 bytes +SHA1 (patch-Makefile) = 6c5df626c2655d985d0339235b112867de02e676 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} |