summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 3052dce)
raw | patch | inline | side by side (parent: 3052dce)
author | Max Kellermann <max@duempel.org> | |
Thu, 25 Sep 2008 13:25:09 +0000 (15:25 +0200) | ||
committer | Max Kellermann <max@duempel.org> | |
Thu, 25 Sep 2008 13:25:09 +0000 (15:25 +0200) |
When installing lyrics plugins, I forgot to honor $(DESTDIR) if set.
Makefile.am | patch | blob | history |
diff --git a/Makefile.am b/Makefile.am
index 419bd097c4f97deb85e665e578db3aa3a9c2c429..8024b077539f5e48b0eafff2fb368b112c6019cb 100644 (file)
--- a/Makefile.am
+++ b/Makefile.am
lyrics_plugins = hd.py leoslyrics.py lyricswiki.rb
install-exec-local:
- install -m 0755 -d $(lyrics_plugin_dir)
- install -m 0755 $(addprefix lyrics/,$(lyrics_plugins)) $(lyrics_plugin_dir)
+ install -m 0755 -d $(DESTDIR)$(lyrics_plugin_dir)
+ install -m 0755 $(addprefix lyrics/,$(lyrics_plugins)) $(DESTDIR)$(lyrics_plugin_dir)