diff options
author | Samba Release Account <samba-bugs@samba.org> | 2004-04-27 14:51:40 +0000 |
---|---|---|
committer | Gerald W. Carter <jerry@samba.org> | 2008-04-23 08:45:49 -0500 |
commit | 27df80520b4f5aeea5f06ef5cca752de5f731d56 (patch) | |
tree | 50be168369d72f772712dfc48d10ad39d20cfb7b | |
parent | 55167d4ace87e416fdcf5d80b5d1e463b141c454 (diff) | |
download | samba-27df80520b4f5aeea5f06ef5cca752de5f731d56.tar.gz samba-27df80520b4f5aeea5f06ef5cca752de5f731d56.tar.bz2 samba-27df80520b4f5aeea5f06ef5cca752de5f731d56.zip |
ensure that the target directory exists
(This used to be commit bf9010fa5a68260cca90bbf69e26d5ca0f9819da)
-rw-r--r-- | docs/Makefile.in | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/docs/Makefile.in b/docs/Makefile.in index 678661e25b..af67952c07 100644 --- a/docs/Makefile.in +++ b/docs/Makefile.in @@ -214,6 +214,7 @@ $(PLUCKERDIR): mkdir $(PLUCKERDIR) %/samba.css: xslt/html/samba.css + if [ ! -d `dirname $@` ]; then mkdir -p `dirname $@`; fi cp $< $@ $(HTMLDIR)/Samba-HOWTO-Collection.html: Samba-HOWTO-Collection.xml $(HOWTODIR_DEPS) $(HOWTODIR_IMAGES_PNG) |