summaryrefslogtreecommitdiff
path: root/doc/lispintro
diff options
context:
space:
mode:
authorPaul Eggert <eggert@cs.ucla.edu>2013-08-27 23:01:52 -0700
committerPaul Eggert <eggert@cs.ucla.edu>2013-08-27 23:01:52 -0700
commit50b13cdedb19f4bdd6737e8d2cdb4daa4e886c92 (patch)
treea58d431171217eb2172386e3b67452fa09d79f99 /doc/lispintro
parentf60e429a1a1a0d6a51761ef12e54dde52967f085 (diff)
downloademacs-50b13cdedb19f4bdd6737e8d2cdb4daa4e886c92.tar.gz
emacs-50b13cdedb19f4bdd6737e8d2cdb4daa4e886c92.tar.bz2
emacs-50b13cdedb19f4bdd6737e8d2cdb4daa4e886c92.zip
* Makefile.in (SHELL): Now @SHELL@, not /bin/sh,
for portability to hosts where /bin/sh has problems.
Diffstat (limited to 'doc/lispintro')
-rw-r--r--doc/lispintro/ChangeLog5
-rw-r--r--doc/lispintro/Makefile.in2
2 files changed, 6 insertions, 1 deletions
diff --git a/doc/lispintro/ChangeLog b/doc/lispintro/ChangeLog
index db02a257a3a..a47183f4d27 100644
--- a/doc/lispintro/ChangeLog
+++ b/doc/lispintro/ChangeLog
@@ -1,3 +1,8 @@
+2013-08-28 Paul Eggert <eggert@cs.ucla.edu>
+
+ * Makefile.in (SHELL): Now @SHELL@, not /bin/sh,
+ for portability to hosts where /bin/sh has problems.
+
2013-08-12 Glenn Morris <rgm@gnu.org>
* emacs-lisp-intro.texi (Complete copy-region-as-kill): Fix typo.
diff --git a/doc/lispintro/Makefile.in b/doc/lispintro/Makefile.in
index ad1b978f255..363e12215b3 100644
--- a/doc/lispintro/Makefile.in
+++ b/doc/lispintro/Makefile.in
@@ -17,7 +17,7 @@
# You should have received a copy of the GNU General Public License
# along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
-SHELL = /bin/sh
+SHELL = @SHELL@
# NB If you add any more configure variables,
# update the sed rules in the dist target below.