diff options
author | Brent Cook <bcook@openbsd.org> | 2015-12-07 08:14:51 -0600 |
---|---|---|
committer | Brent Cook <bcook@openbsd.org> | 2015-12-07 08:14:51 -0600 |
commit | 28aaab43234226b2885d66d1e70f536cd7e438f0 (patch) | |
tree | dcf3836a7cdc97eadd59a2c28d95f551e3b7758c /apps | |
parent | 19f58fdb1bf8052c0ea3ddd3230df07baaa4e843 (diff) | |
download | portable-28aaab43234226b2885d66d1e70f536cd7e438f0.tar.gz portable-28aaab43234226b2885d66d1e70f536cd7e438f0.tar.bz2 portable-28aaab43234226b2885d66d1e70f536cd7e438f0.zip |
allow optionally installing nc(1) with '--enable-nc'
Diffstat (limited to 'apps')
-rw-r--r-- | apps/nc/Makefile.am | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/apps/nc/Makefile.am b/apps/nc/Makefile.am index 564080c..34c5cd3 100644 --- a/apps/nc/Makefile.am +++ b/apps/nc/Makefile.am | |||
@@ -2,7 +2,11 @@ include $(top_srcdir)/Makefile.am.common | |||
2 | 2 | ||
3 | if BUILD_NC | 3 | if BUILD_NC |
4 | 4 | ||
5 | if ENABLE_NC | ||
6 | bin_PROGRAMS = nc | ||
7 | else | ||
5 | noinst_PROGRAMS = nc | 8 | noinst_PROGRAMS = nc |
9 | endif | ||
6 | 10 | ||
7 | EXTRA_DIST = nc.1 | 11 | EXTRA_DIST = nc.1 |
8 | 12 | ||