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
ec9bbc6c
Commit
ec9bbc6c
authored
Jul 20, 2007
by
Eli Zaretskii
Browse files
(install-lisp-CMD, install-lisp-SH): Don't create subdirectories
in $(INSTALL_DIR)/lisp/ if they already exist.
parent
e341a817
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
13 additions
and
2 deletions
+13
-2
lisp/ChangeLog
lisp/ChangeLog
+10
-0
lisp/makefile.w32-in
lisp/makefile.w32-in
+3
-2
No files found.
lisp/ChangeLog
View file @
ec9bbc6c
2007-07-20 Eli Zaretskii <eliz@gnu.org>
* makefile.w32-in (install-lisp-SH): Don't create subdirectories
in $(INSTALL_DIR)/lisp/ if they already exist.
2007-07-20 Dhruva Krishnamurthy <dhruvakm@gmail.com> (tiny change)
* makefile.w32-in (install-lisp-CMD): Don't create subdirectories
in $(INSTALL_DIR)/lisp/ if they already exist.
2007-07-20 Stefan Monnier <monnier@iro.umontreal.ca>
* progmodes/vera-mode.el (vera-re-search-forward)
...
...
lisp/makefile.w32-in
View file @
ec9bbc6c
...
...
@@ -429,12 +429,13 @@ install:
# since cp does not preserve time stamps
install-lisp-SH
:
cp
-f
*
.el
"
$(INSTALL_DIR)
/lisp"
for
dir
in
$(WINS)
;
do
mkdir
"
$(INSTALL_DIR)
/lisp/
$$
dir"
&&
cp
-f
$$
dir
/
*
.el
"
$(INSTALL_DIR)
/lisp/
$$
dir"
;
done
for
dir
in
$(WINS)
;
do
[
-d
"
$(INSTALL_DIR)
/lisp/
$$
dir"
]
||
mkdir
"
$(INSTALL_DIR)
/lisp/
$$
dir"
;
done
for
dir
in
$(WINS)
;
do
cp
-f
$$
dir
/
*
.el
"
$(INSTALL_DIR)
/lisp/
$$
dir"
;
done
for
dir
in
.
$(WINS)
;
do
cp
$$
dir
/
*
.elc
"
$(INSTALL_DIR)
/lisp/
$$
dir"
;
done
install-lisp-CMD
:
cp
-f
*
.el
"
$(INSTALL_DIR)
/lisp"
for
%%f
in
(
$(WINS)
)
do
mkdir
"
$(INSTALL_DIR)
/lisp/%%f"
for
%%f
in
(
$(WINS)
)
do
if
not exist
"
$(INSTALL_DIR)
/lisp/%%f"
mkdir
"
$(INSTALL_DIR)
/lisp/%%f"
for
%%f
in
(
$(WINS)
)
do
cp
-f
%%f/
*
.el
"
$(INSTALL_DIR)
/lisp/%%f"
for
%%f
in
(
.
$(WINS)
)
do
cp
-f
%%f/
*
.elc
"
$(INSTALL_DIR)
/lisp/%%f"
...
...
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