Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 23318
Collapse All | Expand All

(-)openafs/src/pinstall/install.c (-2 / +2 lines)
Lines 180-186 Link Here
180
	    case 0:			/* child	*/
180
	    case 0:			/* child	*/
181
		copy[1] = iname;
181
		copy[1] = iname;
182
		copy[2] = oname;
182
		copy[2] = oname;
183
		execve("/bin/cp", copy, (char **)0);
183
		execv("/bin/cp", copy);
184
		perror("/bin/cp");
184
		perror("/bin/cp");
185
		exit(1);
185
		exit(1);
186
186
Lines 226-232 Link Here
226
#else
226
#else
227
#define	STRIP_BIN	"/bin/strip"
227
#define	STRIP_BIN	"/bin/strip"
228
#endif
228
#endif
229
		execve(STRIP_BIN, strip, (char **)0);
229
		execv(STRIP_BIN, strip);
230
		perror(STRIP_BIN);
230
		perror(STRIP_BIN);
231
		exit(1);
231
		exit(1);
232
232
(-)openafs/src/pam/Makefile.in (-2 / +1 lines)
Lines 24-31 Link Here
24
 SHOBJS = afs_account.o afs_session.o afs_password.o \
24
 SHOBJS = afs_account.o afs_session.o afs_password.o \
25
	  afs_pam_msg.o afs_message.o AFS_component_version_number.o
25
	  afs_pam_msg.o afs_message.o AFS_component_version_number.o
26
   OBJS = $(SHOBJS) test_pam.o
26
   OBJS = $(SHOBJS) test_pam.o
27
INCLUDES=-I${TOP_OBJDIR}/src/config -I${TOP_INCDIR} \
27
INCLUDES=-I${TOP_OBJDIR}/src/config -I${TOP_INCDIR}
28
	-I/usr/include -I/usr/include/sys
29
CFLAGS =  ${DEBUG} ${INCLUDES} ${PAM_CFLAGS}
28
CFLAGS =  ${DEBUG} ${INCLUDES} ${PAM_CFLAGS}
30
29
31
all: test_pam ${TOP_LIBDIR}/pam_afs.so.1 ${TOP_LIBDIR}/pam_afs.krb.so.1
30
all: test_pam ${TOP_LIBDIR}/pam_afs.so.1 ${TOP_LIBDIR}/pam_afs.krb.so.1

Return to bug 23318