diff options
author | Nick Mathewson <nickm@torproject.org> | 2018-06-27 09:48:26 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2018-06-27 10:04:17 -0400 |
commit | bee580ddbaabcd8d6066761cce385c00d75dd2c5 (patch) | |
tree | 8d1f192dffd16cdec221e3b9994f44009c114158 /Makefile.am | |
parent | d893be190fc244330543c9e98613a3f0daebc6ed (diff) | |
download | tor-bee580ddbaabcd8d6066761cce385c00d75dd2c5.tar.gz tor-bee580ddbaabcd8d6066761cce385c00d75dd2c5.zip |
Move sandbox code into a new library.
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Makefile.am b/Makefile.am index d80f81de10..97057048d7 100644 --- a/Makefile.am +++ b/Makefile.am @@ -40,6 +40,7 @@ endif # "Common" libraries used to link tor's utility code. TOR_UTIL_LIBS = \ src/common/libor.a \ + src/lib/libtor-sandbox.a \ src/lib/libtor-net.a \ src/lib/libtor-log.a \ src/lib/libtor-lock.a \ @@ -56,6 +57,7 @@ TOR_UTIL_LIBS = \ # and tests) TOR_UTIL_TESTING_LIBS = \ src/common/libor-testing.a \ + src/lib/libtor-sandbox-testing.a \ src/lib/libtor-net-testing.a \ src/lib/libtor-log-testing.a \ src/lib/libtor-lock-testing.a \ |