search for: distcleanfiles

Displaying 20 results from an estimated 81 matches for "distcleanfiles".

2016 Aug 25
0
Re: [PATCH] build: Add common CLEANFILES and DISTCLEANFILES to common-rules.mk.
On Thursday, 25 August 2016 15:53:32 CEST Richard W.M. Jones wrote: > By adding common CLEANFILES and DISTCLEANFILES variables to > common-rules.mk, we can remove these from most other Makefiles, and > also clean files more consistently. > > Note that bin_PROGRAMS are already cleaned by 'make clean', so I > removed cases where these were unnecessarily added to CLEANFILES. > --- Mostly...
2016 Aug 25
2
[PATCH] build: Add common CLEANFILES and DISTCLEANFILES to common-rules.mk.
By adding common CLEANFILES and DISTCLEANFILES variables to common-rules.mk, we can remove these from most other Makefiles, and also clean files more consistently. Note that bin_PROGRAMS are already cleaned by 'make clean', so I removed cases where these were unnecessarily added to CLEANFILES. --- .gitignore...
2018 Dec 13
2
[nbdkit PATCH] maint: Adjust cleaning rules
...file.am b/docs/Makefile.am index 1772c66..6b712e3 100644 --- a/docs/Makefile.am +++ b/docs/Makefile.am @@ -123,4 +123,4 @@ filter-links.pod: $(top_srcdir)/common-rules.mk $(srcdir)/make-links.sh filter 1 $(filters) > $@-t mv $@-t $@ -MAINTAINERCLEANFILES = plugin-links.pod filter-links.pod +DISTCLEANFILES = plugin-links.pod filter-links.pod diff --git a/tests/Makefile.am b/tests/Makefile.am index 4c7b59c..55db593 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am @@ -32,7 +32,8 @@ include $(top_srcdir)/common-rules.mk -MAINTAINERCLEANFILES = +CLEANFILES = +DISTCLEANFILES = EXTRA_DIST = \...
2014 Mar 02
2
Re: [PATCH 3/8] builder: add functions to read XDG_CONFIG_DIRS and XDG_CONFIG_PATH
On Tue, Feb 25, 2014 at 05:29:08PM +0100, Pino Toscano wrote: > +let xdg_config_dirs ~prog = > + let dirs = > + try Sys.getenv "XDG_CONFIG_DIRS" > + with Not_found -> "/etc/xdg" in This seems to put the virt-builder config files into /etc/xdg/virt-builder which is kind of annoying. Can we move them to a regular default location (/etc/virt-builder)? I
2015 Sep 29
4
[PATCH v2 1/2] builder: add opensuse images sources
...1 + 4 files changed, 27 insertions(+), 1 deletion(-) create mode 100644 builder/opensuse.conf.in create mode 100644 builder/opensuse.gpg diff --git a/builder/Makefile.am b/builder/Makefile.am index 4bed54c..e8f8dfb 100644 --- a/builder/Makefile.am +++ b/builder/Makefile.am @@ -315,7 +315,8 @@ DISTCLEANFILES = .depend # virt-builder's default repository repoconfdir = $(sysconfdir)/xdg/virt-builder/repos.d -repoconf_DATA = libguestfs.conf libguestfs.gpg +repoconf_DATA = libguestfs.conf libguestfs.gpg \ + opensuse.conf opensuse.gpg install-exec-hook: $(LN_S) xdg/virt-builder $(DESTDIR)$(s...
2015 Sep 08
5
[PATCH 0/2] virt-builder OpenSUSE images
Hi guys, Here are two patches to get opensuse images in virt-builder. Cédric Bosdonnat (2): Allow curl to follow redirects. builder: add opensuse images sources builder/Makefile.am | 3 ++- builder/downloader.ml | 4 ++-- builder/opensuse.conf.in | 3 +++ builder/opensuse.gpg | 21 +++++++++++++++++++++ configure.ac | 1 + 5 files changed, 29 insertions(+), 3
2000 Nov 10
1
cvs trunk vorbis/ compile patches
...7 2000 +++ vorbis/Makefile.am Fri Nov 10 16:54:18 2000 @@ -3,5 +3,5 @@ AUTOMAKE_OPTIONS = foreign dist-zip -SUBDIRS = lib include doc examples +SUBDIRS = lib include doc examples vq m4datadir = $(datadir)/aclocal @@ -9,4 +9,6 @@ EXTRA_DIST = README AUTHORS COPYING libvorbis.spec vorbis.m4 +DISTCLEANFILES = config.guess config.sub install-sh ltconfig ltmain.sh \ + mkinstalldirs missing aclocal.m4 configure doc debug: diff -bBu2rN -x CVS -x Make*in -x aclocal.m4 vorbis-trunk/configure.in vorbis/configure.in --- vorbis-trunk/configure.in Wed Nov 8 03:36:35 2000 +++ vorbis/configure.in Thu Nov 9 2...
2015 Sep 08
0
[PATCH 2/2] builder: add opensuse images sources
...1 + 4 files changed, 27 insertions(+), 1 deletion(-) create mode 100644 builder/opensuse.conf.in create mode 100644 builder/opensuse.gpg diff --git a/builder/Makefile.am b/builder/Makefile.am index f48efb0..33acb79 100644 --- a/builder/Makefile.am +++ b/builder/Makefile.am @@ -269,7 +269,8 @@ DISTCLEANFILES = .depend # virt-builder's default repository repoconfdir = $(sysconfdir)/xdg/virt-builder/repos.d -repoconf_DATA = libguestfs.conf libguestfs.gpg +repoconf_DATA = libguestfs.conf libguestfs.gpg \ + opensuse.conf opensuse.gpg install-exec-hook: $(LN_S) xdg/virt-builder $(DESTDIR)$(s...
2018 Nov 19
1
[PATCH] v2v: create an empty windows.vmdk in case of disabled appliance
...va tests. check_DATA = windows.vmdk +if ENABLE_APPLIANCE windows.vmdk: ../test-data/phony-guests/windows.img rm -f $@ $@-t if [ -s $< ]; then \ @@ -487,6 +488,10 @@ windows.vmdk: ../test-data/phony-guests/windows.img else \ touch $@; \ fi +else +windows.vmdk: + touch $@ +endif DISTCLEANFILES += \ windows.vmdk -- 2.17.2
2006 Jul 27
0
[PATCH] pkg-config descriptors
...Jul 27 05:34:01 2006 +++ flac-1.1.2/Makefile.am Thu Jul 27 05:50:57 2006 @@ -28,6 +28,9 @@ # distclean: remove everything except what goes in the distribution # +pkgconfigdir = $(libdir)/pkgconfig +pkgconfig_DATA = FLAC.pc FLAC++.pc + SUBDIRS = doc include man src test build flac.pbproj obj DISTCLEANFILES = libtool-disable-static diff -ruN flac-1.1.2.orig/configure.in flac-1.1.2/configure.in --- flac-1.1.2.orig/configure.in Thu Jul 27 05:34:01 2006 +++ flac-1.1.2/configure.in Thu Jul 27 05:37:10 2006 @@ -303,4 +303,6 @@ obj/release/bin/Makefile \ obj/release/lib/Makefile \ flac.pbproj/Makefile...
2006 Nov 17
1
Re: build issues
...26 diff -u -r1.26 Makefile.am --- Makefile.am 25 Apr 2006 06:59:33 -0000 1.26 +++ Makefile.am 17 Nov 2006 22:54:13 -0000 @@ -28,6 +28,8 @@ # distclean: remove everything except what goes in the distribution # +AUTOMAKE_OPTIONS = 1.7 + SUBDIRS = doc include man src test build flac.pbproj obj DISTCLEANFILES = libtool-disable-static Index: autogen.sh =================================================================== RCS file: /cvsroot/flac/flac/autogen.sh,v retrieving revision 1.14 diff -u -r1.14 autogen.sh --- autogen.sh 17 Nov 2006 06:50:19 -0000 1.14 +++ autogen.sh 17 Nov 2006 22:54:13 -0000 @@ -11...
2013 Feb 07
0
[PATCH 1/4] xmms - Fix libtool usage.
...| 2 -- src/plugin_xmms/Makefile.am | 3 --- 2 files changed, 5 deletions(-) diff --git a/Makefile.am b/Makefile.am index 603c032..9b7bd04 100644 --- a/Makefile.am +++ b/Makefile.am @@ -32,8 +32,6 @@ ACLOCAL_AMFLAGS = -I m4 SUBDIRS = doc include m4 man src examples test build objs -DISTCLEANFILES = libtool-disable-static - EXTRA_DIST = \ COPYING.FDL \ COPYING.GPL \ diff --git a/src/plugin_xmms/Makefile.am b/src/plugin_xmms/Makefile.am index 29879ed..84c4106 100644 --- a/src/plugin_xmms/Makefile.am +++ b/src/plugin_xmms/Makefile.am @@ -38,9 +38,6 @@ else xmmsinputplugindir = @XMMS_INPU...
2015 Sep 29
0
Re: [PATCH v2 1/2] builder: add opensuse images sources
..., 1 deletion(-) > create mode 100644 builder/opensuse.conf.in > create mode 100644 builder/opensuse.gpg > > diff --git a/builder/Makefile.am b/builder/Makefile.am > index 4bed54c..e8f8dfb 100644 > --- a/builder/Makefile.am > +++ b/builder/Makefile.am > @@ -315,7 +315,8 @@ DISTCLEANFILES = .depend > # virt-builder's default repository > > repoconfdir = $(sysconfdir)/xdg/virt-builder/repos.d > -repoconf_DATA = libguestfs.conf libguestfs.gpg > +repoconf_DATA = libguestfs.conf libguestfs.gpg \ > + opensuse.conf opensuse.gpg Wondering if you need to add th...
2008 Mar 30
1
[PATCH 1/2] Add SECRET_TEST_CODE to AM_CONDITIONAL in configure.ac
Otherwise, automake will fail to process vivified/code/Makefile.am --- configure.ac | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/configure.ac b/configure.ac index a3e186b..0e28374 100644 --- a/configure.ac +++ b/configure.ac @@ -300,6 +300,7 @@ else AC_MSG_NOTICE([Vivified was not enabled.]) fi AM_CONDITIONAL(HAVE_VIVI, [test "x$HAVE_VIVI" = xyes])
2006 Nov 11
3
Re: build issues
On Sat, Nov 11, 2006 at 03:03:12PM -0800, Josh Coalson wrote: > ok, checked in some fixes that should take care of most of the > warnings. Nice! Current complete set of warnings: replaygain.c: In function 'parse_double_': replaygain.c:612: warning: comparison between signed and unsigned replaygain.c:612: warning: signed and unsigned type in conditional expression encode.c:2686:
2004 Sep 10
0
1.0 source candidate
...============================================== RCS file: /cvsroot/flac/flac/Makefile.am,v retrieving revision 1.2 diff -u -r1.2 Makefile.am --- Makefile.am 2001/06/08 00:13:21 1.2 +++ Makefile.am 2001/07/21 01:58:17 @@ -34,7 +34,7 @@ # -SUBDIRS = src test +SUBDIRS = doc include man src test DISTCLEANFILES = libtool-disable-static Index: configure.in =================================================================== RCS file: /cvsroot/flac/flac/configure.in,v retrieving revision 1.24 diff -u -r1.24 configure.in --- configure.in 2001/07/20 23:44:35 1.24 +++ configure.in 2001/07/21 01:58:17 @@ -136,...
2020 Oct 17
1
[PATCH] Use guestfsd binary to auto-generate library dependencies for appliance
...$@ + +packagelist: packagelist.in Makefile guestfsd.deps m4 $(PACKAGELIST_CPP_FLAGS) $< | \ grep -v '^[[:space:]]*$$' | grep -v '^#' > $@-t cmp -s $@ $@-t || mv $@-t $@ @@ -153,5 +176,6 @@ stamp-libguestfs-make-fixed-appliance.pod: libguestfs-make-fixed-appliance.pod DISTCLEANFILES += \ make.sh \ + guestfsd.deps \ packagelist \ supermin.d/* diff --git a/appliance/packagelist.in b/appliance/packagelist.in index 13c83d8e45..68ed16a415 100644 --- a/appliance/packagelist.in +++ b/appliance/packagelist.in @@ -23,7 +23,6 @@ dnl Basically the same with a few minor tweaks. ife...
2004 Oct 21
3
1.0-test51
http://dovecot.org/test/ This release is built with autoconf 2.59 and libtool 1.9. We'll see how it works out :) The required changes were done by Matthias Andree. - The last fix for connection hanging made IDLE use 100% CPU - We don't use Maildir/.INBOX/ directory anymore, indexes are stored in Maildir-root - Don't crash with FETCH BODY[n.MIME] - Changed %p (protocol)
2015 Oct 23
1
[PATCH v2] perl: Switch to using Module::Build.
version 2: - Fixed handling of clean & distclean. - Use 'all-local' instead of 'all'. - Don't use abs_* paths in Build.PL.in. Rich.
2004 Sep 10
5
1.0 source candidate
I rethought it and it seemed like a bad idea to post a big file, so you can get it here: http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/flac/junk/flac-1.0-src-candidate.tar.bz2 Josh __________________________________________________ Do You Yahoo!? Get personalized email addresses from Yahoo! Mail http://personal.mail.yahoo.com/