diff options
author | Edwin Groothuis <edwin@FreeBSD.org> | 2003-10-18 00:10:48 +0000 |
---|---|---|
committer | Edwin Groothuis <edwin@FreeBSD.org> | 2003-10-18 00:10:48 +0000 |
commit | 87712f144e54392a71b393de8ca60016322c0b0b (patch) | |
tree | 9001c00ff2a17550b06406a9e33aa8f947460e8d /graphics | |
parent | efa32c1c73f53be1e6d254b522f41e1d6f403121 (diff) |
undo yesterdays changes:
> I'm a bit confused here - where am I using the -fpic flag?
It comes from kmod.mk, I think. Anyway, it turns out this is
a bug in kmod.mk and kernel modules are not yet implemented on
amd64. The previous change should be backed out - sorry for
the misleading suggestion.
Notes
Notes:
svn path=/head/; revision=91536
Diffstat (limited to 'graphics')
-rw-r--r-- | graphics/kix-kmod/Makefile | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/graphics/kix-kmod/Makefile b/graphics/kix-kmod/Makefile index a7a4edf9dce0..d75451b9585e 100644 --- a/graphics/kix-kmod/Makefile +++ b/graphics/kix-kmod/Makefile @@ -18,16 +18,10 @@ COMMENT= A graphical screensaver kernel module BROKEN= "Requires kernel source (/usr/src/sys) to build" .endif -.include <bsd.port.pre.mk> - -.if ${ARCH} == amd64 -CFLAGS+= -fPIC -.endif - do-install: ${INSTALL_PROGRAM} ${WRKSRC}/kix_saver.ko ${PREFIX}/lib post-install: @${SED} -e 's,%%PREFIX%%,${PREFIX},g' ${PKGMESSAGE} -.include <bsd.port.post.mk> +.include <bsd.port.mk> |