Skip to content

Commit

Permalink
Fix .pm6 modules installation
Browse files Browse the repository at this point in the history
Modules with .pm6 suffix were not installed correctly in $(PREFIX)
due to missing Makefile rule for %.pm6

I hit this bug while trying to install perl6-MIME-Base64.
  • Loading branch information
cosimo committed Jul 25, 2010
1 parent cf90318 commit c3a30c6
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions ufo
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,10 @@ $(PREFIX)/%.pm:: %.pm
mkdir -p `dirname '$@'`
install $< $@
$(PREFIX)/%.pm6:: %.pm6
mkdir -p `dirname '$@'`
install $< $@
$(PREFIX)/%.pir:: blib/%.pir
mkdir -p `dirname '$@'`
install $< $@
Expand Down

0 comments on commit c3a30c6

Please sign in to comment.