diff options
author | Robert Hensing <robert@roberthensing.nl> | 2023-06-14 22:57:42 +0200 |
---|---|---|
committer | Robert Hensing <robert@roberthensing.nl> | 2023-06-15 14:32:00 +0200 |
commit | d2696cdd1ee404ef6c6bd532cb90007dd8ee3e9f (patch) | |
tree | 9d41b0dd140aec39c627c653dd90828e6de52829 /tests/test-libstoreconsumer/README.md | |
parent | 9c6ede85fc3cd822b5c6b56045ff231a61fcd55f (diff) |
Fix build hook error for libstore library users
A library shouldn't require changes to the caller's argument handling,
especially if it doesn't have to, and indeed we don't have to.
This changes the lookup order to prioritize the hardcoded path to nix
if it exists. The static executable still finds itself through /proc
and the like.
Diffstat (limited to 'tests/test-libstoreconsumer/README.md')
-rw-r--r-- | tests/test-libstoreconsumer/README.md | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/tests/test-libstoreconsumer/README.md b/tests/test-libstoreconsumer/README.md new file mode 100644 index 000000000..ded69850f --- /dev/null +++ b/tests/test-libstoreconsumer/README.md @@ -0,0 +1,6 @@ + +A very simple C++ consumer of the libstore library. + + - Keep it simple. Library consumers expect something simple. + - No build hook, or any other reinvocations. + - No more global state than necessary. |