diff options
author | Kevin E Martin <kem@kem.org> | 2005-10-18 07:24:03 +0000 |
---|---|---|
committer | Kevin E Martin <kem@kem.org> | 2005-10-18 07:24:03 +0000 |
commit | d3853ab17d7203e7fbdfcd5cc8ed3505e5aa6233 (patch) | |
tree | 707e3ce6cb9c59c79b8efc2c358dd04ca5e0943a /src/Makefile.am | |
parent | 831a32df90d6b3db66d6c578f6e231d4aab2b760 (diff) |
Use $(INSTALL) instead of $(install_sh_DATA) for creating directories.
Diffstat (limited to 'src/Makefile.am')
-rw-r--r-- | src/Makefile.am | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Makefile.am b/src/Makefile.am index 22f37fa..0beebba 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -96,8 +96,8 @@ $(BUILT_HEADER): $(BUILT_SOURCE) $(BUILT_SOURCE): $(top_builddir)/util/makestrs -i $(top_srcdir) $(STRINGSABIOPTIONS) < $(STRING_LIST) > StringDefs.c - $(install_sh_DATA) -d $(top_builddir)/src - $(install_sh_DATA) -d $(top_builddir)/include/X11 + $(INSTALL) -d $(top_builddir)/src + $(INSTALL) -d $(top_builddir)/include/X11 $(install_sh_DATA) StringDefs.h $(top_builddir)/include/X11 $(install_sh_DATA) Shell.h $(top_builddir)/include/X11 rm StringDefs.h Shell.h |