Skip to content

Commit

Permalink
Use --recurse-submodules in make-mks for finding .x files
Browse files Browse the repository at this point in the history
  • Loading branch information
graydon committed Jun 30, 2022
1 parent a5ddd6f commit a32ac97
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion make-mks
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ message="# This file was generated by make-mks; don't edit it by hand."
echo "$message"
echo "SRC_H_FILES" = $(git ls-files '*.h' '*.[ih]pp' | tr " " "\n" | sort | uniq | egrep -v '(test|simulation)/' | tr "\n" " ")
echo "SRC_CXX_FILES" = $(git ls-files '*.cpp' | tr " " "\n" | sort | uniq | egrep -v '(test|simulation)/' | tr "\n" " ")
echo "SRC_X_FILES" = $(git ls-files '*.x' | tr " " "\n" | sort | uniq | tr "\n" " ")
echo "SRC_X_FILES" = $(git ls-files --recurse-submodules '*.x' | tr " " "\n" | sort | uniq | tr "\n" " ")
echo "SRC_TEST_H_FILES" = $(git ls-files '*.h' '*.[ih]pp' | tr " " "\n" | egrep '(test|simulation)/' | tr "\n" " ")
echo "SRC_TEST_CXX_FILES" = $(git ls-files '*.cpp' | tr " " "\n" | sort | uniq | egrep '(test|simulation)/' | tr "\n" " ")
echo "SRC_RUST_FILES" = $(git ls-files '*.rs' | tr " " "\n" | sort | uniq | tr "\n" " ")
Expand Down

9 comments on commit a32ac97

@latobarita
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

saw approval from sisuresh
at graydon@a32ac97

@latobarita
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

merging graydon/stellar-core/move-xdr-next-to-submodule = a32ac97 into auto

@latobarita
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

graydon/stellar-core/move-xdr-next-to-submodule = a32ac97 merged ok, testing candidate = 977b7c01

@latobarita
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@latobarita
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

saw approval from sisuresh, graydon
at graydon@a32ac97

@latobarita
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

merging graydon/stellar-core/move-xdr-next-to-submodule = a32ac97 into auto

@latobarita
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

graydon/stellar-core/move-xdr-next-to-submodule = a32ac97 merged ok, testing candidate = a3d11b4

@latobarita
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

fast-forwarding master to auto = a3d11b4

Please sign in to comment.