diff options
author | Andrea Corallo <akrl@sdf.org> | 2020-10-05 08:42:12 +0200 |
---|---|---|
committer | Andrea Corallo <akrl@sdf.org> | 2020-10-05 08:54:48 +0200 |
commit | 323200044f0c3f716f8f78a6f5e39349fe039117 (patch) | |
tree | 3b04b1944e53134df8c3598d52efba8270cc1020 /configure.ac | |
parent | 915214ac9a97025c01ec0bf1375d3630b3f6adf0 (diff) | |
download | emacs-323200044f0c3f716f8f78a6f5e39349fe039117.tar.gz |
* configure.ac (lispdirrel): Fix value for MacOS build.
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac index be53578239b..b7b0c268c84 100644 --- a/configure.ac +++ b/configure.ac @@ -1906,11 +1906,11 @@ if test "${with_ns}" != no; then # so avoid NS_IMPL_COCOA if macuvs.h is absent. # Even a headless Emacs can build macuvs.h, so this should let you bootstrap. if test "${opsys}" = darwin && test -f "$srcdir/src/macuvs.h"; then + lispdirrel=Contents/Resources/lisp NS_IMPL_COCOA=yes ns_appdir=`pwd`/nextstep/Emacs.app ns_appbindir=${ns_appdir}/Contents/MacOS - lispdirrel=Contents/Resources - ns_appresdir=${ns_appdir}/${lispdirrel} + ns_appresdir=${ns_appdir}/Contents/Resources ns_appsrc=Cocoa/Emacs.base ns_fontfile=macfont.o elif flags=$( (gnustep-config --objc-flags) 2>/dev/null); then |