Merge pull request #42 from yukoba/MakefileBugFix

Remove needless / after $(DESTDIR)
feature/tap-sh
William Pitcock 2012-09-10 13:22:17 -07:00
commit 6bb75554e2
1 changed files with 4 additions and 4 deletions

View File

@ -25,10 +25,10 @@ clean:
rm $(PROG)
install:
mkdir -p $(DESTDIR)/$(bindir)
install -c -m755 $(PROG) $(DESTDIR)/$(bindir)/$(PROG)
mkdir -p $(DESTDIR)/$(datarootdir)/aclocal
install -c -m644 pkg.m4 $(DESTDIR)/$(datarootdir)/aclocal/pkg.m4
mkdir -p $(DESTDIR)$(bindir)
install -c -m755 $(PROG) $(DESTDIR)$(bindir)/$(PROG)
mkdir -p $(DESTDIR)$(datarootdir)/aclocal
install -c -m644 pkg.m4 $(DESTDIR)$(datarootdir)/aclocal/pkg.m4
check: $(PROG)
$(SHELL) tests/run.sh ./$(PROG)