summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2014-07-02 19:58:32 -0700
committerKaz Kylheku <kaz@kylheku.com>2014-07-02 19:59:46 -0700
commit4b782cfb33e2847eb8ab1d42e5487ae005091498 (patch)
tree03baa6905ef3a8480a56050332cd673a7da2da65
parent20e75858d4c1e971b6b577fdf3b97b3005fc8328 (diff)
downloadtxr-4b782cfb33e2847eb8ab1d42e5487ae005091498.tar.gz
txr-4b782cfb33e2847eb8ab1d42e5487ae005091498.tar.bz2
txr-4b782cfb33e2847eb8ab1d42e5487ae005091498.zip
* Makefile: use $(EXE) in install: recipe.
* configure: set up EXE variable in config.make, not exe.
-rw-r--r--ChangeLog16
-rw-r--r--Makefile2
-rwxr-xr-xconfigure2
3 files changed, 18 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 7da494e0..dc98eaeb 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,21 @@
2014-07-02 Kaz Kylheku <kaz@kylheku.com>
+ Version 91.
+
+ * RELNOTES: Updated.
+
+ * configure, txr.1: Bumped version.
+
+ * dep.mk, txr.vim: Regenerated.
+
+2014-07-02 Kaz Kylheku <kaz@kylheku.com>
+
+ * Makefile: use $(EXE) in install: recipe.
+
+ * configure: set up EXE variable in config.make, not exe.
+
+2014-07-02 Kaz Kylheku <kaz@kylheku.com>
+
* txr.1: Documented usleep.
2014-07-02 Kaz Kylheku <kaz@kylheku.com>
diff --git a/Makefile b/Makefile
index 8dc2862f..1dbc87fa 100644
--- a/Makefile
+++ b/Makefile
@@ -166,7 +166,7 @@ PREINSTALL := :
.PHONY: install
install: $(PROG)
$(PREINSTALL)
- $(call INSTALL,0755,txr,$(DESTDIR)$(bindir))
+ $(call INSTALL,0755,txr$(EXE),$(DESTDIR)$(bindir))
$(call INSTALL,0444,$(top_srcdir)/txr.1,$(DESTDIR)$(mandir)/man1)
$(call INSTALL,0444,$(top_srcdir)/share/txr/stdlib/*.txr,$(DESTDIR)$(datadir)/stdlib)
diff --git a/configure b/configure
index be75db58..f57a81da 100755
--- a/configure
+++ b/configure
@@ -619,7 +619,7 @@ debug_support := $debug_support
mpi_version := $mpi_version
# EXE suffix
-exe := $exe
+EXE := $exe
CC := $cc
LEX := $lex