diff options
author | jperkin <jperkin> | 2014-08-21 16:20:43 +0000 |
---|---|---|
committer | jperkin <jperkin> | 2014-08-21 16:20:43 +0000 |
commit | db0a09cefffcc312809dcfeefb635d3e4abf61b6 (patch) | |
tree | 58df93c5ef42de0fad052410ab32df14b2dd35e7 /emulators | |
parent | 1f09d3c59215ecac1aeb002a6539fadeb566248d (diff) | |
download | pkgsrc-db0a09cefffcc312809dcfeefb635d3e4abf61b6.tar.gz |
Fix build on SunOS (needs explicit -lm).
Diffstat (limited to 'emulators')
-rw-r--r-- | emulators/sms_sdl/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/emulators/sms_sdl/Makefile b/emulators/sms_sdl/Makefile index f077a6b7cc4..a20f04d7354 100644 --- a/emulators/sms_sdl/Makefile +++ b/emulators/sms_sdl/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.12 2012/10/03 12:55:17 asau Exp $ +# $NetBSD: Makefile,v 1.13 2014/08/21 16:20:43 jperkin Exp $ # DISTNAME= sms_sdl-0.9.4a-r7.1-src @@ -18,6 +18,7 @@ BUILD_DIRS= sdl INSTALLATION_DIRS= bin LDFLAGS.DragonFly= -lm +LDFLAGS.SunOS+= -lm do-install: ${INSTALL_PROGRAM} ${WRKSRC}/sdl/sms_sdl ${DESTDIR}${PREFIX}/bin |