diff options
author | edwin <edwin@FreeBSD.org> | 2003-10-18 00:10:48 +0000 |
---|---|---|
committer | edwin <edwin@FreeBSD.org> | 2003-10-18 00:10:48 +0000 |
commit | 360bd34a47b382a6150e0927d6ebf1b34e9ee377 (patch) | |
tree | 00b1318adda2ff11c08c8e6bba2bddac6c7ca798 /graphics | |
parent | fcb9d74057d3b8694679cf72cdf31ad6bac5aeea (diff) | |
download | FreeBSD-ports-360bd34a47b382a6150e0927d6ebf1b34e9ee377.zip FreeBSD-ports-360bd34a47b382a6150e0927d6ebf1b34e9ee377.tar.gz |
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.
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 a7a4edf..d75451b 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> |