diff options
author | Ton Voon <tonvoon@users.sourceforge.net> | 2006-07-10 08:44:39 +0000 |
---|---|---|
committer | Ton Voon <tonvoon@users.sourceforge.net> | 2006-07-10 08:44:39 +0000 |
commit | 6267f1036777d505bd6a1e8c2a5d9f76690f9db0 (patch) | |
tree | b24b4715f4b3a04dc712a54a1510372683269a0f /lib/Makefile.am | |
parent | 3b9386244655be4ef16729ffad4c1f1171af7262 (diff) | |
download | monitoring-plugins-6267f1036777d505bd6a1e8c2a5d9f76690f9db0.tar.gz |
Didn't add intprops.h into distribution correctly
git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@1445 f882894a-f735-0410-b71e-b25c423dba1c
Diffstat (limited to 'lib/Makefile.am')
-rw-r--r-- | lib/Makefile.am | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/lib/Makefile.am b/lib/Makefile.am index 35663b19..9a8991e1 100644 --- a/lib/Makefile.am +++ b/lib/Makefile.am @@ -13,11 +13,16 @@ libcoreutils_a_SOURCES = \ safe-write.c safe-write.h strcase.h xalloc-die.c # intprops.h required for getloadavg.c +# This needs to be an EXTRA_DIST because the m4s +# that have AC_LIBSOURCES for intprops.h are not necessary and +# the getloadavg m4 is an autoconf one, so doesn't +# know about intprops.h. Confused? You will be! +EXTRA_DIST = intprops.h + other_coreutils_files = \ error.c error.h \ fsusage.c \ getloadavg.c \ - intprops.h \ malloc.c \ mountlist.c \ realloc.c \ @@ -43,7 +48,7 @@ print_coreutil_files: # Below are from coreutil's lib/Makefile.am BUILT_SOURCES = $(STDBOOL_H) -EXTRA_DIST = stdbool_.h +EXTRA_DIST += stdbool_.h MOSTLYCLEANFILES = stdbool.h stdbool.ht # Create stdbool.h on systems that lack a working one. stdbool.h: stdbool_.h |