diff options
author | merakor <cem@ckyln.com> | 2020-12-26 17:42:05 +0000 |
---|---|---|
committer | merakor <cem@ckyln.com> | 2020-12-26 17:42:05 +0000 |
commit | 32ac6f0e255279ef2e58472c78ef0ad950e0572e (patch) | |
tree | ba2ca0c3ea2063bf674cd88c8a4e107855420ab4 | |
parent | 08c4e02f8f7f99622436f92786b5e70600383b96 (diff) | |
download | cpt-32ac6f0e255279ef2e58472c78ef0ad950e0572e.tar.gz |
lib.rc: fix getbin()
FossilOrigin-Name: 9483e73d74a4ca38735f8128d695a008b1b93768e2b62a4b7184e7e90fcb0e62
-rw-r--r-- | lib.rc | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -53,7 +53,7 @@ PHONY() { getbin() { # Function to get all executables - find src contrib -name 'cpt-*' ! -name '*.in' + find src contrib \( -name cpt -o -name 'cpt-*' \) ! -name '*.in' ! -name '*.did' } # Phony targets |