Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
64544985
Commit
64544985
authored
Apr 14, 2013
by
Eli Zaretskii
Browse files
Avoid building blessmail and use hard links when installing emacs.exe.
parent
f1fecede
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
15 additions
and
2 deletions
+15
-2
Makefile.in
Makefile.in
+3
-1
configure.ac
configure.ac
+11
-0
lib-src/Makefile.in
lib-src/Makefile.in
+1
-1
No files found.
Makefile.in
View file @
64544985
...
...
@@ -257,6 +257,8 @@ INSTALL_INFO = @INSTALL_INFO@
INSTALL_STRIP
=
MKDIR_P
=
@MKDIR_P@
LN_S
=
@LN_S@
# Used in "make install". Usually, $(LN_S), but MS-Windows uses hard links.
LN_EMACS
=
@LN_EMACS@
# We use gzip to compress installed .el files.
GZIP_PROG
=
@GZIP_PROG@
...
...
@@ -471,7 +473,7 @@ install-arch-dep: src install-arch-indep install-doc
chmod
1755
$(DESTDIR)${bindir}
/
$(EMACSFULL)
||
true
;
\
if
test
"x
${NO_BIN_LINK}
"
=
x
;
then
\
rm
-f
$(DESTDIR)${bindir}
/
$(EMACS)
;
\
cd
$(DESTDIR)${bindir}
&&
$(LN_S)
$(EMACSFULL)
$(EMACS)
;
\
cd
$(DESTDIR)${bindir}
&&
$(LN_
EMAC
S)
$(EMACSFULL)
$(EMACS)
;
\
fi
;
\
else
\
subdir
=
${ns_appresdir}
/site-lisp
;
\
...
...
configure.ac
View file @
64544985
...
...
@@ -810,6 +810,12 @@ dnl AC_PROG_RANLIB
dnl fi
AC_PROG_LN_S
LN_EMACS="\$(LN_S)"
if test "$opsys" = "mingw32"; then
LN_EMACS="ln"
fi
AC_SUBST(LN_EMACS)
AC_PATH_PROG(INSTALL_INFO, install-info, :,
$PATH$PATH_SEPARATOR/usr/sbin$PATH_SEPARATOR/sbin)
dnl Don't use GZIP, which is used by gzip for additional parameters.
...
...
@@ -3033,6 +3039,9 @@ case "$opsys" in
test $ac_cv_header_maillock_h = yes && mail_lock=no
fi
;;
mingw32)
mail_lock="none-needed" ;;
esac
BLESSMAIL_TARGET=
...
...
@@ -3041,6 +3050,8 @@ case "$mail_lock" in
lockf) AC_DEFINE(MAIL_USE_LOCKF, 1, [Define if the mailer uses lockf to interlock the mail spool.]) ;;
none-needed) ;;
*) BLESSMAIL_TARGET="need-blessmail" ;;
esac
AC_SUBST(BLESSMAIL_TARGET)
...
...
lib-src/Makefile.in
View file @
64544985
...
...
@@ -241,7 +241,7 @@ $(DESTDIR)${archlibdir}: all
umask
022
;
${MKDIR_P}
$(DESTDIR)${gamedir}
;
\
touch
$(DESTDIR)${gamedir}
/snake-scores
;
\
touch
$(DESTDIR)${gamedir}
/tetris-scores
-
if
chown
${gameuser}
$(DESTDIR)${archlibdir}
/update-game-score
&&
chmod
u+s
$(DESTDIR)${archlibdir}
/update-game-score
;
then
\
-
if
chown
${gameuser}
$(DESTDIR)${archlibdir}
/update-game-score
${EXEEXT}
&&
chmod
u+s
$(DESTDIR)${archlibdir}
/update-game-score
${EXEEXT}
;
then
\
chown
${gameuser}
$(DESTDIR)${gamedir}
;
\
chmod
u
=
rwx,g
=
rwx,o
=
rx
$(DESTDIR)${gamedir}
;
\
fi
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment