blob: 142e6823d0c1ae459cbff10d3953a0dc5635c8dd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
Description: fixing installing into proto (debian/tmp)
This is a dirty hack. Without it 'make install' forget
to walk into subdirs (i386 and amd64) and libnsl is not
installed into debian/tmp
Index: b/usr/src/lib/libnsl/Makefile
===================================================================
--- a/usr/src/lib/libnsl/Makefile
+++ b/usr/src/lib/libnsl/Makefile
@@ -85,7 +85,7 @@ all: $(PROTOCOL_DIR) $(DERIVED_FILES) .
headers: $(PROTOCOL_DIR) .WAIT $(PROTOCOL_FILES) $(PROTOCOL_FILES_UTS) \
$(DERIVED_FILES)
-install: all .WAIT $(SUBDIRS)
+install: $(PROTOCOL_DIR) $(DERIVED_FILES) .WAIT $(SUBDIRS)
install_h: $(ROOTHDRS)
|