Remove needless / after $(DESTDIR) #42

Merged
yukoba merged 1 commits from MakefileBugFix into master 2012-09-10 20:22:18 +00:00
1 changed files with 4 additions and 4 deletions

View File

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