Commit 2bc42c64 authored by Max Kellermann's avatar Max Kellermann

Makefile.am: use $(MKDIR_P) instead of "mkdir -p"

parent 49372a22
...@@ -354,12 +354,12 @@ android/build/include/org_musicpd_Bridge.h: android/build/classes.dex ...@@ -354,12 +354,12 @@ android/build/include/org_musicpd_Bridge.h: android/build/classes.dex
BUILT_SOURCES = android/build/include/org_musicpd_Bridge.h BUILT_SOURCES = android/build/include/org_musicpd_Bridge.h
android/build/lib/$(ANDROID_ABI)/libmpd.so: libmpd.so android/build/lib/$(ANDROID_ABI)/libmpd.so: libmpd.so
mkdir -p $(@D) $(MKDIR_P) $(@D)
rm -f $@ rm -f $@
$(STRIP) -o $@ $< $(STRIP) -o $@ $<
android/build/res/drawable/icon.png: mpd.svg android/build/res/drawable/icon.png: mpd.svg
mkdir -p $(@D) $(MKDIR_P) $(@D)
rsvg-convert --width=48 --height=48 $< -o $@ rsvg-convert --width=48 --height=48 $< -o $@
android/build/res/drawable/notification_icon.png: android/build/res/drawable/icon.png android/build/res/drawable/notification_icon.png: android/build/res/drawable/icon.png
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment