diff options
author | Stefan Metzmacher <metze@samba.org> | 2006-08-31 10:31:40 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 14:16:58 -0500 |
commit | e683a57f325909003fa17bf82fc6570c49ef5f1b (patch) | |
tree | 8f2aa0376edd61620aadceb72cb0ef7fe62ae1b7 /source4/lib | |
parent | 648dacfaa167f857c22efc9a312d25a55af7b9f0 (diff) | |
download | samba-e683a57f325909003fa17bf82fc6570c49ef5f1b.tar.gz samba-e683a57f325909003fa17bf82fc6570c49ef5f1b.tar.bz2 samba-e683a57f325909003fa17bf82fc6570c49ef5f1b.zip |
r17964: try to support sun* hosts
metze
(This used to be commit 87d88b3a47047f837101aca2180555dc35cfcf31)
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 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 |