diff options
author | Stefan Metzmacher <metze@samba.org> | 2006-08-31 10:17:54 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 14:16:58 -0500 |
commit | 648dacfaa167f857c22efc9a312d25a55af7b9f0 (patch) | |
tree | 4f9e6997a9c3e26e091eed1681f8846774b4ac00 /source4/lib | |
parent | 6845099b596dee8361618b334086d19213b0654f (diff) | |
download | samba-648dacfaa167f857c22efc9a312d25a55af7b9f0.tar.gz samba-648dacfaa167f857c22efc9a312d25a55af7b9f0.tar.bz2 samba-648dacfaa167f857c22efc9a312d25a55af7b9f0.zip |
r17963: fix install logic for talloc.3
metze
(This used to be commit 161f2c04f78ba03ae4a24667e50cc9d8a446921e)
Diffstat (limited to 'source4/lib')
-rw-r--r-- | source4/lib/talloc/Makefile.in | 4 |
1 files 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 |