diff options
author | Nikos Mavrogiannopoulos <nmav@gnutls.org> | 2015-12-15 20:36:29 +0100 |
---|---|---|
committer | Nikos Mavrogiannopoulos <nmav@gnutls.org> | 2015-12-15 20:36:29 +0100 |
commit | f69d71744b9b5d0f2cf7953d9282cc9b06d53f62 (patch) | |
tree | 5d46b1314da16ad9588a263d437561f01828dc2c | |
parent | b8fa2938eb4bc87807cc4ecb9b1a45ac06001dde (diff) | |
download | gnutls-f69d71744b9b5d0f2cf7953d9282cc9b06d53f62.tar.gz |
build: fix make distclean by including src/gl only once
-rw-r--r-- | Makefile.am | 2 | ||||
-rw-r--r-- | src/Makefile.am | 3 |
2 files changed, 3 insertions, 2 deletions
diff --git a/Makefile.am b/Makefile.am index 19fcb9056f..d61fded8e2 100644 --- a/Makefile.am +++ b/Makefile.am @@ -29,7 +29,7 @@ endif SUBDIRS += po if ENABLE_TOOLS -SUBDIRS += src +SUBDIRS += src/gl src else SUBDIRS += src/gl endif diff --git a/src/Makefile.am b/src/Makefile.am index 0306af18bd..162664cba1 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -17,7 +17,8 @@ # along with this file; if not, write to the Free Software Foundation, # Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -SUBDIRS = gl +# src/gl is being added by the top level makefile +SUBDIRS = BUILT_SOURCES = srptool-args.c srptool-args.h \ psktool-args.c psktool-args.h ocsptool-args.h ocsptool-args.c \ |