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
5d1e70a2
Commit
5d1e70a2
authored
Nov 14, 2009
by
Andreas Schwab
Browse files
Ignore errors from mkdir when creating deps
directory.
parent
473a99b7
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
2 deletions
+7
-2
src/ChangeLog
src/ChangeLog
+5
-0
src/Makefile.in
src/Makefile.in
+2
-2
No files found.
src/ChangeLog
View file @
5d1e70a2
2009-11-14 Andreas Schwab <schwab@linux-m68k.org>
* Makefile.in: Ignore errors from mkdir when creating deps
directory.
2009-11-14 Jan Djärv <jan.h.d@swipnet.se>
* gtkutil.c (xg_update_frame_menubar): Do nothing if menubar already
...
...
src/Makefile.in
View file @
5d1e70a2
...
...
@@ -267,12 +267,12 @@ ALL_OBJC_CFLAGS=$(ALL_CFLAGS) @GNU_OBJC_CFLAGS@
.SUFFIXES
:
.m
.c.o
:
#ifdef AUTO_DEPEND
@test
-d
deps
||
mkdir
deps
@
-
test
-d
deps
||
mkdir
deps
#endif
$(CC)
-c
$(CPPFLAGS)
$(ALL_CFLAGS)
$<
.m.o
:
#ifdef AUTO_DEPEND
@test
-d
deps
||
mkdir
deps
@
-
test
-d
deps
||
mkdir
deps
#endif
$(CC)
-c
$(CPPFLAGS)
$(ALL_OBJC_CFLAGS)
$<
...
...
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