From cfce590e41bce3b9f79d0ebff0af34baf5cf675d Mon Sep 17 00:00:00 2001 From: Jaroslav Kysela Date: Sat, 4 Nov 2000 12:16:28 +0000 Subject: [PATCH] DESTDIR fixes --- aplay/Makefile.am | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/aplay/Makefile.am b/aplay/Makefile.am index 2cfdd72..1c30cec 100644 --- a/aplay/Makefile.am +++ b/aplay/Makefile.am @@ -17,8 +17,8 @@ arecord.1: aplay.1 install-exec-hook: rm -f $(bindir)/arecord - (cd $(bindir) && $(LN_S) aplay arecord) + (cd $(DESTDIR)$(bindir) && $(LN_S) aplay arecord) install-data-hook: rm -f $(mandir)/man1/arecord.1 - (cd $(mandir)/man1 && $(LN_S) aplay.1 arecord.1) + (cd $(DESTDIR)$(mandir)/man1 && $(LN_S) aplay.1 arecord.1)