Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Dorota Czaplejewicz
gtk
Commits
63bb0c73
Commit
63bb0c73
authored
Jan 10, 2011
by
Javier Jardón
Browse files
build: Use mkdir_p instead mkinstalldirs
As we don't use mkinstalldirs, $(mkinstalldirs) is simply an alias for $(mkdir_p)
parent
3f911b25
Changes
2
Hide whitespace changes
Inline
Side-by-side
Makefile.am
View file @
63bb0c73
...
...
@@ -47,7 +47,6 @@ MAINTAINERCLEANFILES = \
$(srcdir)
/install-sh
\
$(srcdir)
/ltmain.sh
\
$(srcdir)
/missing
\
$(srcdir)
/mkinstalldirs
\
$(srcdir)
/omf.make
\
$(srcdir)
/xmldocs.make
\
$(srcdir)
/gtk-doc.make
\
...
...
gtk/Makefile.am
View file @
63bb0c73
...
...
@@ -907,7 +907,7 @@ endif
if
USE_QUARTZ
install-mac-key-theme
:
$(mk
install
dir
s
)
$(DESTDIR)$(datadir)
/themes/Mac/gtk-3.0-key
$(mkdir
_p
)
$(DESTDIR)$(datadir)
/themes/Mac/gtk-3.0-key
$(INSTALL_DATA)
$(srcdir)
/gtkrc.key.mac
$(DESTDIR)$(datadir)
/themes/Mac/gtk-3.0-key/gtkrc
uninstall-mac-key-theme
:
rm
-f
$(DESTDIR)$(datadir)
/themes/Mac/gtk-3.0-key/gtkrc
...
...
@@ -930,11 +930,11 @@ dist-hook: ../build/win32/vs9/gtk.vcproj
# Install a RC file for the default GTK+ theme, and key themes
install-data-local
:
install-ms-lib install-def-file install-mac-key-theme
$(mk
install
dir
s
)
$(DESTDIR)$(datadir)
/themes/Raleigh/gtk-3.0
$(mkdir
_p
)
$(DESTDIR)$(datadir)
/themes/Raleigh/gtk-3.0
$(INSTALL_DATA)
$(srcdir)
/gtkrc.default
$(DESTDIR)$(datadir)
/themes/Raleigh/gtk-3.0/gtkrc
$(mk
install
dir
s
)
$(DESTDIR)$(datadir)
/themes/Default/gtk-3.0-key
$(mkdir
_p
)
$(DESTDIR)$(datadir)
/themes/Default/gtk-3.0-key
$(INSTALL_DATA)
$(srcdir)
/gtkrc.key.default
$(DESTDIR)$(datadir)
/themes/Default/gtk-3.0-key/gtkrc
$(mk
install
dir
s
)
$(DESTDIR)$(datadir)
/themes/Emacs/gtk-3.0-key
$(mkdir
_p
)
$(DESTDIR)$(datadir)
/themes/Emacs/gtk-3.0-key
$(INSTALL_DATA)
$(srcdir)
/gtkrc.key.emacs
$(DESTDIR)$(datadir)
/themes/Emacs/gtk-3.0-key/gtkrc
uninstall-local
:
uninstall-ms-lib uninstall-def-file uninstall-mac-key-theme
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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