Remove needless / after $(DESTDIR)

pull/42/head
Yu Kobayashi 2012-09-09 18:11:36 +09:00
parent 150d91d07f
commit dd776ba946
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)