Fabio M. Di Nitto wrote: ... > man/Makefile.in shouldn't be added to svn.
Nor should any Makefile. This patch gets rid of two warnings I saw when running autogen.sh: >From 46d05b4e50d69cd616a5d55594d960e4013da95c Mon Sep 17 00:00:00 2001 From: Jim Meyering <[email protected]> Date: Tue, 31 Mar 2009 11:02:24 +0200 Subject: [PATCH] service/Makefile.am (src): Rename from AMF_SOURCES. --- services/Makefile.am | 14 ++++++-------- 1 files changed, 6 insertions(+), 8 deletions(-) diff --git a/services/Makefile.am b/services/Makefile.am index 878cfdb..c9030d7 100644 --- a/services/Makefile.am +++ b/services/Makefile.am @@ -1,12 +1,12 @@ # Copyright (c) 2009 Red Hat, Inc. -# +# # Authors: Steven Dake ([email protected]) # # This software licensed under BSD license, the text of which follows: -# +# # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are met: -# +# # - Redistributions of source code must retain the above copyright notice, # this list of conditions and the following disclaimer. # - Redistributions in binary form must reproduce the above copyright notice, @@ -34,14 +34,14 @@ AM_CFLAGS = -fPIC INCLUDES = -I$(top_builddir)/include -I$(top_srcdir)/include -AMF_SOURCES = amfapp.c amfcluster.c amfnode.c amfsi.c amfutil.c \ +src = amfapp.c amfcluster.c amfnode.c amfsi.c amfutil.c \ amf.c amfcomp.c amfsg.c amfsu.c SERVICE_LCRSO = clm ckpt evt lck msg tmr -AMF_OBJECTS = $(AMF_SOURCES:%.c=%.o) +AMF_OBJECTS = $(src:%.c=%.o) -SOURCES = $(SERVICE_LCRSO:%=%.c) $(AMF_SOURCES) +SOURCES = $(SERVICE_LCRSO:%=%.c) $(src) EXTRA_DIST = $(SOURCES) @@ -83,5 +83,3 @@ uninstall-local: clean-local: rm -f *.o *.a *.so* *.da *.bb *.bbg *.lcrso - - -- 1.6.2.rc1.285.gc5f54 _______________________________________________ Openais mailing list [email protected] https://lists.linux-foundation.org/mailman/listinfo/openais
