Skip to content

Commit

Permalink
Merge branch 'bf/installation-fixes' into master
Browse files Browse the repository at this point in the history
  • Loading branch information
newren committed Nov 13, 2019
2 parents 8d8410e + 2cbd4a4 commit 3334c5c
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions Makefile
Expand Up @@ -26,18 +26,18 @@ fixup_locale:
snag_docs: Documentation/man1/git-filter-repo.1 Documentation/html/git-filter-repo.html

Documentation/man1/git-filter-repo.1:
mkdir -p man1
git show docs:man1/git-filter-repo.1 >Documentation/man1/git-filter-repo.1
mkdir -p Documentation/man1
git show origin/docs:man1/git-filter-repo.1 >Documentation/man1/git-filter-repo.1

Documentation/html/git-filter-repo.html:
mkdir -p html
git show docs:html/git-filter-repo.html >Documentation/html/git-filter-repo.html
mkdir -p Documentation/html
git show origin/docs:html/git-filter-repo.html >Documentation/html/git-filter-repo.html

install: snag_docs #fixup_locale
cp -a git-filter-repo $(bindir)/
ln -s $(bindir)/git-filter-repo $(pythondir)/git_filter_repo.py
cp -a Documentation/man1/git-filter-repo.1 $(mandir)/man1/git-filter-repo.1
cp -a Documentation/html/git-filter-repo.html $(htmldir)/git-filter-repo.html
cp -a git-filter-repo "$(bindir)/"
ln -sf "$(bindir)/git-filter-repo" "$(pythondir)/git_filter_repo.py"
cp -a Documentation/man1/git-filter-repo.1 "$(mandir)/man1/git-filter-repo.1"
cp -a Documentation/html/git-filter-repo.html "$(htmldir)/git-filter-repo.html"


#
Expand Down

0 comments on commit 3334c5c

Please sign in to comment.