On Wed, Nov 30, 2011 at 12:34:57PM +0100, Daniel Exner <[email protected]> wrote: > may someone with a native x64 machine have a look on > keyutils-1.5.3-1-x86_64? > I think there is something wrong with the Makefile, but since I > currently only have a i686 box its hard to debug. > At least I didn't get a message about arm build, so I seem to have fixed > this. ;-) > > keyutils is needed ad dependency for cifs-utils, for mounting Samba/CIFS > shares.
I don't see how this is x86_64-related, however the attached patch fixes build for me. BTW, if you want x86_64 shell access, you can just request so off-list and I'll copy your ssh key from genesis to helicon and there you can have it.
diff --git a/Makefile b/Makefile
index 2ef28f8..386506b 100644
--- a/Makefile
+++ b/Makefile
@@ -123,13 +123,13 @@ keyutils.os: keyutils.c keyutils.h Makefile
%.o: %.c keyutils.h Makefile
$(CC) $(CPPFLAGS) $(CFLAGS) -o $@ -c $<
-keyctl: keyctl.o -lkeyutils
+keyctl: keyctl.o
$(CC) -L. $(CFLAGS) $(LDFLAGS) $(RPATH) -o $@ $< -lkeyutils
-request-key: request-key.o -lkeyutils
+request-key: request-key.o
$(CC) -L. $(CFLAGS) $(LDFLAGS) $(RPATH) -o $@ $< -lkeyutils
-key.dns_resolver: key.dns_resolver.o -lkeyutils
+key.dns_resolver: key.dns_resolver.o
$(CC) -L. $(CFLAGS) $(LDFLAGS) $(RPATH) -o $@ $< -lkeyutils -lresolv
###############################################################################
pgp1vFUhVPca7.pgp
Description: PGP signature
_______________________________________________ Frugalware-devel mailing list [email protected] http://frugalware.org/mailman/listinfo/frugalware-devel
