Skip to content

Commit

Permalink
Fix rake dependence on arch def for profile gen (riscv-software-src#195)
Browse files Browse the repository at this point in the history
Signed-off-by: Albert Yosher <[email protected]>
  • Loading branch information
dhower-qc authored and Albert Yosher committed Nov 20, 2024
1 parent 32796b3 commit 411a82f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions backends/profile_doc/tasks.rake
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ end

namespace :gen do
desc "Create a specification PDF for +profile_family+"
task :profile_pdf, [:profile_family] => ["gen:arch"] do |_t, args|
task :profile_pdf, [:profile_family] => ["#{$root}/.stamps/arch-gen-_64.stamp"] do |_t, args|
family_name = args[:profile_family]
raise ArgumentError, "Missing required option +profile_family+" if family_name.nil?

Expand All @@ -92,7 +92,7 @@ namespace :gen do
end

desc "Create a specification HTML for +profile_family+"
task :profile_html, [:profile_family] => ["gen:arch"] do |_t, args|
task :profile_html, [:profile_family] => ["#{$root}/.stamps/arch-gen-_64.stamp"] do |_t, args|
family_name = args[:profile_family]
raise ArgumentError, "Missing required option +profile_family+" if family_name.nil?

Expand Down

0 comments on commit 411a82f

Please sign in to comment.