diff options
| author | Glenn Morris | 2012-05-11 20:57:48 -0400 |
|---|---|---|
| committer | Glenn Morris | 2012-05-11 20:57:48 -0400 |
| commit | 3fe7cdc86d67dd5dcf1ce9d779b20dfec9eafb8d (patch) | |
| tree | 024689144c2da897a7a93b8485f76c60b97ba1a1 /src/Makefile.in | |
| parent | 2171cea5fcc5537bf6179284bdce554d80982594 (diff) | |
| download | emacs-3fe7cdc86d67dd5dcf1ce9d779b20dfec9eafb8d.tar.gz emacs-3fe7cdc86d67dd5dcf1ce9d779b20dfec9eafb8d.zip | |
Let configure test for a suitable mkdir -p
* configure.in (AC_PROG_MKDIR_P): Call it, to set MKDIR_P.
(MKDEPDIR): Use $MKDIR_P.
* Makefile.in (MKDIR_P): New, set by configure.
(mkdir): Use $MKDIR_P.
* doc/emacs/Makefile.in (MKDIR_P): New, set by configure.
(mkinfodir): Use $MKDIR_P.
* doc/lispintro/Makefile.in (MKDIR_P): New, set by configure.
(mkinfodir): Use $MKDIR_P.
* doc/lispref/Makefile.in (MKDIR_P): New, set by configure.
(mkinfodir): Use $MKDIR_P.
* doc/misc/Makefile.in (MKDIR_P): New, set by configure.
(mkinfodir): Use $MKDIR_P.
* src/Makefile.in (MKDIR_P): New, set by configure.
* src/ns.mk (${ns_appdir}, ${ns_appbindir}Emacs): Use $MKDIR_P.
Diffstat (limited to 'src/Makefile.in')
| -rw-r--r-- | src/Makefile.in | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/Makefile.in b/src/Makefile.in index 32276084b3f..dd667ea60a3 100644 --- a/src/Makefile.in +++ b/src/Makefile.in | |||
| @@ -40,6 +40,7 @@ version = @version@ | |||
| 40 | # Substitute an assignment for the MAKE variable, because | 40 | # Substitute an assignment for the MAKE variable, because |
| 41 | # BSD doesn't have it as a default. | 41 | # BSD doesn't have it as a default. |
| 42 | @SET_MAKE@ | 42 | @SET_MAKE@ |
| 43 | MKDIR_P = @MKDIR_P@ | ||
| 43 | # Don't use LIBS. configure puts stuff in it that either shouldn't be | 44 | # Don't use LIBS. configure puts stuff in it that either shouldn't be |
| 44 | # linked with Emacs or is duplicated by the other stuff below. | 45 | # linked with Emacs or is duplicated by the other stuff below. |
| 45 | # LIBS = @LIBS@ | 46 | # LIBS = @LIBS@ |
| @@ -284,7 +285,7 @@ CANNOT_DUMP=@CANNOT_DUMP@ | |||
| 284 | DEPDIR=deps | 285 | DEPDIR=deps |
| 285 | ## -MMD -MF $(DEPDIR)/$*.d if AUTO_DEPEND; else empty. | 286 | ## -MMD -MF $(DEPDIR)/$*.d if AUTO_DEPEND; else empty. |
| 286 | DEPFLAGS=@DEPFLAGS@ | 287 | DEPFLAGS=@DEPFLAGS@ |
| 287 | ## test -d $(DEPDIR) || mkdir $(DEPDIR) (if AUTO_DEPEND); else ':'. | 288 | ## ${MKDIR_P} ${DEPDIR} (if AUTO_DEPEND); else ':'. |
| 288 | MKDEPDIR=@MKDEPDIR@ | 289 | MKDEPDIR=@MKDEPDIR@ |
| 289 | 290 | ||
| 290 | ## DO NOT use -R. There is a special hack described in lastfile.c | 291 | ## DO NOT use -R. There is a special hack described in lastfile.c |