File: patch.hppa

package info (click to toggle)
openafs 1.3.81-3sarge3
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 64,948 kB
  • ctags: 86,354
  • sloc: ansic: 451,050; cpp: 103,220; sh: 9,324; makefile: 8,940; perl: 7,275; java: 5,247; asm: 1,279; yacc: 983; lex: 318; tcl: 249; objc: 135; csh: 123
file content (54 lines) | stat: -rw-r--r-- 1,477 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
Index: src/pam/Makefile.in
===================================================================
RCS file: /afs/sipb/project/openafs/debian/cvs/openafs/src/pam/Makefile.in,v
retrieving revision 1.9
diff -u -r1.9 Makefile.in
--- src/pam/Makefile.in	13 Apr 2003 21:16:40 -0000	1.9
+++ src/pam/Makefile.in	13 Apr 2003 21:28:00 -0000
@@ -92,6 +92,8 @@
 	sun*_5*) \
 		$(LD) $(LDFLAGS) -M mapfile -o $@ \
 			afs_setcred_krb.o afs_auth_krb.o afs_util_krb.o $(SHOBJS) $(LDFLAGS) $(KLIBS) ;; \
 	*linux*) \
 		$(CC) $(LDFLAGS) -o $@ afs_setcred_krb.o afs_auth_krb.o afs_util_krb.o $(SHOBJS) $(KLIBS) ;;\
 	*fbsd*) \
@@ -121,7 +123,13 @@
 	${INSTALL} $? $@
 
 ${DEST}/lib/pam_afs.krb.so.1: pam_afs.krb.so.1
-	${INSTALL} $? $@
+	set -x; \
+	case "$(SYS_NAME)" in \
+	parisc*_linux*) \
+		echo Skipping install of $@. ;; \
+	*) \
+		${INSTALL} $? $@ ;; \
+	esac
 
 afs_pam_msg.o: afs_pam_msg.c afs_pam_msg.h afs_message.h
 afs_message.o: afs_message.c afs_message.h
@@ -141,10 +149,22 @@
 	${INSTALL} $? $@
 
 ${DESTDIR}${libdir}/pam_afs.krb.so.1: pam_afs.krb.so.1
-	${INSTALL} $? $@
+	set -x; \
+	case "$(SYS_NAME)" in \
+	parisc*_linux*) \
+		echo Skipping install of $@. ;; \
+	*) \
+		${INSTALL} $? $@ ;; \
+	esac
 
 ${TOP_LIBDIR}/pam_afs.krb.so.1: pam_afs.krb.so.1
-	${INSTALL} $? $@
+	set -x; \
+	case "$(SYS_NAME)" in \
+	parisc*_linux*) \
+		echo Skipping install of $@. ;; \
+	*) \
+		${INSTALL} $? $@ ;; \
+	esac
 
 dest:  ${DEST}/lib/pam_afs.so.1 ${DEST}/lib/pam_afs.krb.so.1