Skip to content

Commit

Permalink
Fix debian/rules bug in aarch64
Browse files Browse the repository at this point in the history
  • Loading branch information
KangLin committed Jun 20, 2024
1 parent ec3b9fc commit f15faa2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion 3th_libs/LunarCalendar
2 changes: 1 addition & 1 deletion debian/rules
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ override_dh_auto_configure:
-DCMAKE_BUILD_TYPE=Release

override_dh_auto_build:
cmake --build $(BUILD_DIR) --config Release --parallel $(if "`cat /proc/cpuinfo |grep 'cpu cores' |wc -l`", `cat /proc/cpuinfo |grep 'cpu cores' |wc -l`, 1)
cmake --build $(BUILD_DIR) --config Release --parallel $(if "`cat /proc/cpuinfo |grep 'cpu processor' |wc -l`", `cat /proc/cpuinfo |grep 'cpu processor' |wc -l`, 1)

override_dh_auto_install:
cmake --install $(BUILD_DIR) --config Release \
Expand Down

0 comments on commit f15faa2

Please sign in to comment.