From 2f201b177816be7112884bda180d65f5fff19155 Mon Sep 17 00:00:00 2001 From: "Jeremy C. Reed" Date: Sat, 9 Dec 2006 09:28:04 -0600 Subject: Don't use "INSTALL" during the build because INSTALL may be set by build environment with settings for chown and make not work with permissions of the builder. So use mkdir -p and cp instead. This is for my bug #6599. --- src/Makefile.am | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/Makefile.am b/src/Makefile.am index dd9df55..5127b42 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -98,8 +98,8 @@ $(BUILT_HEADER): $(BUILT_SOURCE) $(BUILT_SOURCE): $(top_builddir)/util/makestrs -i $(top_srcdir) $(STRINGSABIOPTIONS) < $(STRING_LIST) > StringDefs.c - $(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 + mkdir -p $(top_builddir)/src + mkdir -p $(top_builddir)/include/X11 + cp StringDefs.h $(top_builddir)/include/X11 + cp Shell.h $(top_builddir)/include/X11 rm StringDefs.h Shell.h -- cgit v1.2.3