From 648dacfaa167f857c22efc9a312d25a55af7b9f0 Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Thu, 31 Aug 2006 10:17:54 +0000 Subject: r17963: fix install logic for talloc.3 metze (This used to be commit 161f2c04f78ba03ae4a24667e50cc9d8a446921e) --- source4/lib/talloc/Makefile.in | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source4/lib/talloc/Makefile.in b/source4/lib/talloc/Makefile.in index a4b34fbf92..ad298e6b49 100644 --- a/source4/lib/talloc/Makefile.in +++ b/source4/lib/talloc/Makefile.in @@ -32,8 +32,8 @@ install: all ${INSTALLCMD} -d ${includedir} ${INSTALLCMD} -m 644 $(srcdir)/talloc.h $(includedir) ${INSTALLCMD} -m 644 talloc.pc $(libdir)/pkgconfig - test -f talloc.3 && ${INSTALLCMD} -d ${mandir}/man3 - test -f talloc.3 && ${INSTALLCMD} -m 644 talloc.3 $(mandir)/man3 + test ! -e talloc.3 || ${INSTALLCMD} -d ${mandir}/man3 + test ! -e talloc.3 || ${INSTALLCMD} -m 644 talloc.3 $(mandir)/man3 doc: talloc.3 talloc.3.html -- cgit