diff Makefile.in @ 3010:4ca5a6bd174b

* configure.in: Add support for the `--exec-prefix' option. * Makefile.in: Accept that support. * configure.in: Use the AC_PROG_INSTALL macro. * Makefile.in (INSTALL): Variable removed. (INSTALL_PROGRAM, INSTALL_DATA): Accept these values from configure.
author Jim Blandy <jimb@redhat.com>
date Mon, 24 May 1993 06:08:13 +0000
parents 9403c9149e79
children cf7b1c23e9a7
line wrap: on
line diff
--- a/Makefile.in	Mon May 24 05:54:23 1993 +0000
+++ b/Makefile.in	Mon May 24 06:08:13 1993 +0000
@@ -66,7 +66,7 @@
 prefix=@prefix@
 
 # Like `prefix', but used for architecture-specific files.
-exec_prefix=${prefix}
+exec_prefix=@exec_prefix@
 
 # Where to install Emacs and other binaries that people will want to
 # run directly (like etags).
@@ -183,9 +183,8 @@
 # ==================== Utility Programs for the Build ====================
 
 # Allow the user to specify the install program.
-INSTALL = install -c
-INSTALL_PROGRAM = ${INSTALL}
-INSTALL_DATA = ${INSTALL}
+INSTALL_PROGRAM = @INSTALL_PROGRAM@
+INSTALL_DATA = @INSTALL_DATA@
 
 # ============================= Targets ==============================