[OpenAFS-devel] Fix for makefile for pt_util -
Nathan Neulinger
nneul@umr.edu
Thu, 21 Dec 2000 08:35:33 -0600
--ZPt4rx8FFjLCG7dd
Content-Type: text/plain; charset=us-ascii
Content-Disposition: inline
You have a rule for ${DESTDIR}root.server, but your install dependency is
for ${DESTDIR}/root.server.
ptserver/Makefile changed to remove the slash, like all the other rules.
-- Nathan
------------------------------------------------------------
Nathan Neulinger EMail: nneul@umr.edu
University of Missouri - Rolla Phone: (573) 341-4841
Computing Services Fax: (573) 341-4216
--ZPt4rx8FFjLCG7dd
Content-Type: text/plain; charset=us-ascii
Content-Disposition: attachment; filename="ptserver-makefile-ptutil.diff"
Index: ptserver/Makefile
===================================================================
RCS file: /cvs/openafs/src/ptserver/Makefile,v
retrieving revision 1.3
diff -u -r1.3 Makefile
--- ptserver/Makefile 2000/12/19 07:45:10 1.3
+++ ptserver/Makefile 2000/12/21 14:33:36
@@ -161,7 +161,7 @@
${INSTALL} $? $@
-install: all ukinstall ${DESTDIR}root.server/usr/afs/bin/ptserver ${DESTDIR}root.server/usr/afs/bin/pts ${DESTDIR}bin/pts ${DESTDIR}lib/afs/libprot.a ${DESTDIR}/root.server/usr/afs/bin/pt_util
+install: all ukinstall ${DESTDIR}root.server/usr/afs/bin/ptserver ${DESTDIR}root.server/usr/afs/bin/pts ${DESTDIR}bin/pts ${DESTDIR}lib/afs/libprot.a ${DESTDIR}root.server/usr/afs/bin/pt_util
${INSTALL} libprot.a ${DESTDIR}lib/afs/libprot.a
${INSTALL} ptserver.h ptint.h pterror.h ptclient.h ${DESTDIR}include/afs
${INSTALL} ptserver.h ${DESTDIR}include/afs/prserver.h
--ZPt4rx8FFjLCG7dd--