Skip to content

Commit

Permalink
also fix building of tests (followup 5a1bcf3)
Browse files Browse the repository at this point in the history
  • Loading branch information
jef-n committed Dec 6, 2013
1 parent 5a1bcf3 commit 7a0b36c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/listpulls.pl
Expand Up @@ -26,5 +26,5 @@
print "\nASSIGNMENTS:\n";

foreach my $assignee ( sort keys %assigned ) {
printf "%-22s %s\n", $assignee || "unassigned", join( ", ", sort @{ $assigned{$assignee} } );
printf "%-22s %s\n", $assignee || "unassigned", join( ", ", sort { $a <=> $b } @{ $assigned{$assignee} } );
}
1 change: 1 addition & 0 deletions tests/src/core/CMakeLists.txt
Expand Up @@ -8,6 +8,7 @@ SET (util_SRCS qgscompositionchecker.cpp)
INCLUDE_DIRECTORIES(${CMAKE_CURRENT_SOURCE_DIR}
${CMAKE_CURRENT_BINARY_DIR}
${CMAKE_SOURCE_DIR}/src/core
${CMAKE_SOURCE_DIR}/src/core/dxf
${CMAKE_SOURCE_DIR}/src/core/composer
${CMAKE_SOURCE_DIR}/src/core/raster
${CMAKE_SOURCE_DIR}/src/core/symbology-ng
Expand Down

0 comments on commit 7a0b36c

Please sign in to comment.