always use mkdir -p

git-svn-id: https://yap.svn.sf.net/svnroot/yap/trunk@195 b08c6af1-5177-4d33-ba66-4b1c6b8b522a
This commit is contained in:
vsc
2001-11-23 16:09:01 +00:00
parent c548fd3987
commit 7f20ca1dda
2 changed files with 10 additions and 10 deletions

View File

@@ -85,9 +85,9 @@ CHR_EXAMPLES= $(srcdir)/chr/examples/allentable.pl \
install: $(CHR_TOP) $(CHR_LICENSE) $(CHR_PROGRAMS) $(CHR_EXAMPLES)
-mkdir $(DESTDIR)$(LIBDIR)/library
-mkdir $(DESTDIR)$(LIBDIR)/library/chr
-mkdir $(DESTDIR)$(LIBDIR)/library/chr/examples
-mkdir -p $(DESTDIR)$(LIBDIR)/library
-mkdir -p $(DESTDIR)$(LIBDIR)/library/chr
-mkdir -p $(DESTDIR)$(LIBDIR)/library/chr/examples
for h in $(CHR_TOP); do $(INSTALL_DATA) $$h $(DESTDIR)$(LIBDIR)/library; done
for h in $(CHR_LICENSE); do $(INSTALL_DATA) $$h $(DESTDIR)$(LIBDIR)/library; done
for h in $(CHR_PROGRAMS); do $(INSTALL_DATA) $$h $(DESTDIR)$(LIBDIR)/library/chr; done