Code

Makefile.am: don't use $(addprefix ...)
authorMax Kellermann <max@duempel.org>
Thu, 2 Oct 2008 13:05:47 +0000 (15:05 +0200)
committerMax Kellermann <max@duempel.org>
Thu, 2 Oct 2008 13:05:47 +0000 (15:05 +0200)
The function "addprefix" is a GNU extension, don't use it.

Makefile.am

index 855c0ee52496bbce95e151a271076a5caa7b9d70..13a90638f629f92282e4cbf1c4cd534ad70c5c32 100644 (file)
@@ -31,6 +31,6 @@ lyrics_plugins = hd.sh leoslyrics.py lyricswiki.rb
 
 install-exec-local:
        install -m 0755 -d $(DESTDIR)$(lyrics_plugin_dir)
-       install -m 0755 $(addprefix lyrics/,$(lyrics_plugins)) $(DESTDIR)$(lyrics_plugin_dir)
+       cd lyrics && install -m 0755 $(lyrics_plugins) $(DESTDIR)$(lyrics_plugin_dir)
 
 endif