summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeremy C. Reed <reed@glacier.reedmedia.net>2006-12-09 09:28:04 -0600
committerJeremy C. Reed <reed@glacier.reedmedia.net>2006-12-09 09:28:04 -0600
commit2f201b177816be7112884bda180d65f5fff19155 (patch)
treeb02e826813560f0ceb8ede67a1139971a6ed3fc7
parent8d18dfa21f8349c998675e1f9971de02ca99a1cd (diff)
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.
-rw-r--r--src/Makefile.am8
1 files 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