diff options
author | Nick Mathewson <nickm@torproject.org> | 2018-06-21 10:53:29 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2018-06-21 11:03:39 -0400 |
commit | a403ee6bb31168e19cf4173fff0e9acf9548231f (patch) | |
tree | 841bd1a24df1e9aefa6e8370635170a561e80a75 /Makefile.am | |
parent | 275aff6917260209dc53e553d895ec886f6c8c52 (diff) | |
download | tor-a403ee6bb31168e19cf4173fff0e9acf9548231f.tar.gz tor-a403ee6bb31168e19cf4173fff0e9acf9548231f.zip |
Move consttime library code into its own directory.
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile.am b/Makefile.am index 6c60de111c..40ecfdae7c 100644 --- a/Makefile.am +++ b/Makefile.am @@ -41,14 +41,14 @@ endif TOR_UTIL_LIBS = \ src/common/libor.a \ src/lib/libtor-err.a \ - src/common/libor-ctime.a + src/lib/libtor-ctime.a # Variants of the above for linking the testing variant of tor (for coverage # and tests) TOR_UTIL_TESTING_LIBS = \ src/common/libor-testing.a \ src/lib/libtor-err-testing.a \ - src/common/libor-ctime-testing.a + src/lib/libtor-ctime-testing.a # Internal crypto libraries used in Tor TOR_CRYPTO_LIBS = \ |