From ce80c285052149df970c08626cf0d87d7cd6f584 Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Thu, 2 Oct 2008 15:05:47 +0200 Subject: [PATCH] Makefile.am: don't use $(addprefix ...) The function "addprefix" is a GNU extension, don't use it. --- Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile.am b/Makefile.am index 855c0ee..13a9063 100644 --- a/Makefile.am +++ b/Makefile.am @@ -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 -- 2.30.2