2bbfff1f3a
A bug was discovered in the key validation code. This bug causes keys with more than one user ID to give all user IDs on the key the amount of validity given to the most-valid key. http://marc.theaimsgroup.com/?l=bugtraq&m=105215110111174&w=2 -- MAINTAINER ok
21 lines
588 B
Plaintext
21 lines
588 B
Plaintext
$OpenBSD: patch-mpi_Makefile_in,v 1.2 2003/05/27 14:54:43 brad Exp $
|
|
--- mpi/Makefile.in.orig Mon May 12 19:17:27 2003
|
|
+++ mpi/Makefile.in Mon May 12 19:18:25 2003
|
|
@@ -63,6 +63,7 @@ AR = @AR@
|
|
AUTOCONF = @AUTOCONF@
|
|
AUTOHEADER = @AUTOHEADER@
|
|
AUTOMAKE = @AUTOMAKE@
|
|
+AS ?= as
|
|
AWK = @AWK@
|
|
BUILD_INCLUDED_LIBINTL = @BUILD_INCLUDED_LIBINTL@
|
|
CAPLIBS = @CAPLIBS@
|
|
@@ -527,7 +528,7 @@ uninstall-am: uninstall-info-am
|
|
# work and add one to cpp .S files
|
|
.S.o:
|
|
$(CPP) $(INCLUDES) $(DEFS) $< | grep -v '^#' > _$*.s
|
|
- $(COMPILE) -c _$*.s
|
|
+ $(AS) -o _$*.o _$*.s
|
|
mv -f _$*.o $*.o
|
|
|
|
.S.lo:
|