diff options
-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 ad298e6b49..cb8fb00406 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 ! -e talloc.3 || ${INSTALLCMD} -d ${mandir}/man3 - test ! -e talloc.3 || ${INSTALLCMD} -m 644 talloc.3 $(mandir)/man3 + if [ -f talloc.3 ];then ${INSTALLCMD} -d ${mandir}/man3; fi + if [ -f talloc.3 ];then ${INSTALLCMD} -m 644 talloc.3 $(mandir)/man3; fi doc: talloc.3 talloc.3.html |