* configure.ac (LD_SWITCH_SYSTEM_EMACS): Fix typo in previous change.

This commit is contained in:
Paul Eggert 2013-05-12 23:23:08 -07:00
parent 522fe43b9f
commit bb8eb35723
2 changed files with 3 additions and 3 deletions

View file

@ -1,6 +1,6 @@
2013-05-13 Paul Eggert <eggert@cs.ucla.edu>
* configure.ac (LD_SWITCH_SYSTEM_TEMACS): OpenBSD needs -fno-pie.
* configure.ac (LD_SWITCH_SYSTEM_TEMACS): OpenBSD needs -nopie.
Reported privately by Han Boetes <han@boetes.org>.
2013-05-08 Juanma Barranquero <lekktu@gmail.com>

View file

@ -1009,7 +1009,7 @@ case "$opsys" in
;;
openbsd)
## Han Boetes <han@mijncomputer.nl> says this is necessary,
## Han Boetes <han@boetes.org> says this is necessary,
## otherwise Emacs dumps core on elf systems.
LD_SWITCH_SYSTEM="-Z"
;;
@ -4273,7 +4273,7 @@ case "$opsys" in
## It seems clearer therefore to put this piece in LD_SWITCH_SYSTEM_TEMACS.
gnu*) LD_SWITCH_SYSTEM_TEMACS="\$(LD_SWITCH_X_SITE_RPATH)" ;;
openbsd) LD_SWITCH_SYSTEM_TEMACS='-fno-pie' ;;
openbsd) LD_SWITCH_SYSTEM_TEMACS='-nopie' ;;
*) LD_SWITCH_SYSTEM_TEMACS= ;;
esac