diff options
author | tnn <tnn@pkgsrc.org> | 2016-03-09 22:10:13 +0000 |
---|---|---|
committer | tnn <tnn@pkgsrc.org> | 2016-03-09 22:10:13 +0000 |
commit | dd28a993aa654a5c1322472241eb815020ec2d96 (patch) | |
tree | 00e6ab74273d2ae1b59be999e69e15f3561eebf1 /emulators | |
parent | 95bef125e1d54245d19b177d550bf6b7ca1f9248 (diff) | |
download | pkgsrc-dd28a993aa654a5c1322472241eb815020ec2d96.tar.gz |
needs -lm on Linux too
Diffstat (limited to 'emulators')
-rw-r--r-- | emulators/gcube/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/emulators/gcube/Makefile b/emulators/gcube/Makefile index c7dae4c2c07..6ff0f0d457a 100644 --- a/emulators/gcube/Makefile +++ b/emulators/gcube/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.22 2015/04/25 14:20:45 tnn Exp $ +# $NetBSD: Makefile,v 1.23 2016/03/09 22:10:13 tnn Exp $ # DISTNAME= gcube-0.4-src @@ -17,6 +17,7 @@ WRKSRC= ${WRKDIR}/0.4 LDFLAGS.DragonFly= -lm LDFLAGS.SunOS+= -lm +LDFLAGS.Linux+= -lm .include "../../mk/bsd.prefs.mk" |