search for: distclean

Displaying 20 results from an estimated 368 matches for "distclean".

2003 Apr 29
2
make -DNOCLEANDEPENDS distclean
every time I execute make -DNOCLEANDEPENDS distclean I get this error... is it a freebsd bug, or is it something that just happened on my system? I've tried deleting parts of ports and updating the structure with cvs but the error always happens. ===> audio/zinf "Makefile", line 72: UPGRADE print/freetype TO CURRENT VERSION! *** E...
2014 Dec 03
1
[PATCH for-xen-4.5 1/3] tools/hotplug: distclean target should remove files generated by configure
...As in, this affects developers, but > > not end-users and not distros. But perhaps I am missing > > one scenario? > > > > As such I would lean towards deferring this (and the other > > two) to Xen 4.6. > > As I know Debian build system sometimes complain if make distclean > does not leave build tree in distclean state (read "state before > configure" != "state after distclean"). It means that from > distros point of view we should apply this patch. However, > other two are not required and we can deffer them to Xen 4.6. Cc-ing Axel a...
2013 Oct 08
1
git folder moved : waf : The top source directory has moved. Please run distclean and reconfigure
...ldtools/wafadmin/Utils.py", line > 634, in recurse > f(self) > File > "/media/data/git/samba4/lib/replace/../../buildtools/wafsamba/wscript", line > 427, in build > raise Utils.WafError('''The top source directory has moved. Please > run distclean and reconfigure''') > WafError: The top source directory has moved. Please run distclean and > reconfigure > > make: *** [all] Erreur 1 I tried : git clean -x -f -d but I'm still getting the error above. Could someone assist a bit with this ? Thanks in advance for you...
2001 Nov 11
1
[PATCH] do not invoke sub-make unless the 'cd directory' succeeds
...sd-compat && $(MAKE)) always: libssh.a: $(LIBSSH_OBJS) @@ -144,23 +144,23 @@ $(CONFIGFILES): $(CONFIGFILES_IN) clean: rm -f *.o *.a $(TARGETS) logintest config.cache config.log rm -f *.out core - (cd openbsd-compat; $(MAKE) clean) + (cd openbsd-compat && $(MAKE) clean) distclean: rm -f *.o *.a $(TARGETS) logintest config.cache config.log rm -f *.out core rm -f Makefile config.h config.status ssh_prng_cmds *~ rm -rf autom4te.cache - (cd openbsd-compat; $(MAKE) distclean) - (cd scard; $(MAKE) distclean) + (cd openbsd-compat && $(MAKE) distclean) + (cd scard...
2012 Feb 22
5
[PATCH] Add gtags target for xen/Makefile. Also update .hgignore.
...+23,7 @@ ^\.config$ ^\.pc (^|/)(tags|TAGS)$ +(^|/)(GTAGS|GPATH|GSYMS|GRTAGS|gtags.*)$ ^build-.*$ ^dist/.*$ ^docs/.*\.aux$ diff --git a/xen/Makefile b/xen/Makefile --- a/xen/Makefile +++ b/xen/Makefile @@ -20,8 +20,8 @@ default: build .PHONY: dist dist: install -.PHONY: build install clean distclean cscope TAGS tags MAP -build install debug clean distclean cscope TAGS tags MAP:: +.PHONY: build install clean distclean cscope TAGS tags MAP gtags +build install debug clean distclean cscope TAGS tags MAP gtags:: $(MAKE) -f Rules.mk _$@ .PHONY: _build @@ -67,7 +67,7 @@ _clean: delete-unfresh-f...
2007 Oct 17
1
Fwd: Re: FLAC for "ARM little endian for glibc"
...to do? What compiler are > you using? H IV0, we are using a lot of different cross-compiler (mainly based on GCC 3.4.x) When I tried to cross-compile FLAC for non-i386 platforms (such as ARM), I use use "configure" in the following way: (cd ~/UPnPTVStack/lgpl-code/flac-1.1.2; make distclean; ./configure --host=armv5b-softfloat-linux --disable-shared CC=/opt/crosstool/gcc-3.4.1-glibc-2.2.5/armv5b-softfloat-linux/bin/armv5b-softfloat-linux-gcc CXX=/opt/crosstool/gcc-3.4.1-glibc-2.2.5/armv5b-softfloat-linux/bin/armv5b-softfloat-linux-g++ LDFLAGS=-lpthread --without-XMMS --without-ogg...
2015 Jun 12
2
1.0.15 gone, can't start version 2
...ote: > > > I mean, in the source directory. > > You mean in the directory where files from the tar were placed? I've > unfortunately removed those manually, but then I put them back and > tried the make again, still same error. "make: *** No rule to make > target `distclean'. Stop. > I haven't yet compiled dovecot by myself but with wine it's 'make uninstall' clean and distclean only apply to the build source tree itself but aren't the reverse of 'make install' That's at least how it should be
2013 Jan 18
0
[PATCH] Fix the 'distclean' target.
...tions(+), 3 deletions(-) diff --git a/doc/Makefile.am b/doc/Makefile.am index 67703e9..54ec270 100644 --- a/doc/Makefile.am +++ b/doc/Makefile.am @@ -38,5 +38,5 @@ doc_DATA = \ EXTRA_DIST = Doxyfile.in Makefile.lite doxygen.footer.html doxygen.header.html $(doc_DATA) -maintainer-clean-local: +distclean-local: rm -rf FLAC.tag html/api doxytmp diff --git a/doc/html/Makefile.am b/doc/html/Makefile.am index 2b06aab..5fd97cc 100644 --- a/doc/html/Makefile.am +++ b/doc/html/Makefile.am @@ -75,6 +75,6 @@ install-data-local: (cd $(builddir)/api && $(INSTALL_DATA) * $(DESTDIR)$(docdir)/api) u...
2008 Feb 12
0
[PATCH] Make `make distclean' remove a few more files.
--- Makefile.in | 3 +++ 1 files changed, 3 insertions(+), 0 deletions(-) diff --git a/Makefile.in b/Makefile.in index 98486f4..fee32b7 100644 --- a/Makefile.in +++ b/Makefile.in @@ -171,11 +171,14 @@ cleantests: # the source directory. distclean: clean rm -f Makefile config.h config.status + rm -f lib/dummy popt/dummy zlib/dummy rm -f $(srcdir)/Makefile $(srcdir)/config.h $(srcdir)/config.status + rm -f $(srcdir)/lib/dummy $(srcdir)/popt/dummy $(srcdir)/zlib/dummy rm -f config.cache config.log rm -f $(srcdir)/config.cache $(srcdir)...
2012 Jun 05
4
[Fwd: Re: Error]
Hello list, Iam root, and remove the bin folder in my samba master, this folder is in /media/samba-master/bin, when I remove this folder I run git pull again and the same problem The general step that I follow are 1- rm -r /media/samba-master/bin 2- I run make distclean, and WAF_MAKE=1 ./buildtools/bin/waf distclean 'distclean' finished successfully (0.000s) 3- I run git pull error: Unable to find 3b6a88a1a49fdc23cd956c6583e9ec56e541eeae under http://gitweb.samba.org/samba.git Cannot obtain needed blob 3b6a88a1a49fdc23cd956c6583e9ec56e541eeae while p...
2012 Jan 16
13
[PATCH v10 0/7] build upstream qemu and seabios by default
Hi all, this is the tenth version of the patch series to introduce upstream qemu and seabios in the xen-unstable build system. Changes to v9: - rename QEMU_UPSTREAM_TAG to QEMU_UPSTREAM_REVISION: we are going to use it with a branch name by default; - set QEMU_UPSTREAM_REVISION to "master" by default; - set SEABIOS_UPSTREAM_URL to git://xenbits.xen.org/seabios.git by default; - add
2020 Mar 13
1
Asterisk 16, 9.0 - res_rtp_asterisk compilation error
...83: res] Error 2 > > I applied the patch and did make clean && ./configure > --with-pjproject-bundled && make which give this error. Openssl is > installed. On the other server there was no problem. > > Any clue ? > > > If you do "make distclean" and then rebuild does it resolve the > problem? Did you apply the patch to upgrade? > We a distclean it's OK despite the fact that we see error    [CC] app_osplookup.c -> app_osplookup.o app_osplookup.c: In function ‘osp_convert_inout.constprop’: app_osplookup.c:1011:35: warni...
2018 Dec 13
2
[nbdkit PATCH] maint: Adjust cleaning rules
'make distcheck' calls us out for leaving files behind after 'make distclean' that were not present in the tarball. Either these files are expensive enough that end users should not be required to regenerate them (so they should be distributed), or they should be cleaned when a user asks to get back to the pristine tarball state. Automake suggests this hierarchy of cl...
2015 Jun 12
2
1.0.15 gone, can't start version 2
I mean, in the source directory. On 12 June 2015 at 15:13, Muzaffer Tolga Ozses <tolga at ozses.net> wrote: > Have you done *make distclean* in prior? That should remove all things > dovecot. > > On 12 June 2015 at 15:10, Steve Matzura <number6 at noisynotes.com> wrote: > >> On advice/recommendation received on this list, I removed version >> 1.0.15 with: >> >> rm -rf /usr/local/dovecot >&gt...
2008 Dec 24
5
Yesterday's Git updates break compilation for anyone else?
...../../include -I../../include -D__WINESRC__ -h -H ../../include/wtypes.h ../../include/wtypes.idl make[2]: ../../tools/widl/widl: Command not found make[2]: *** [../../include/wtypes.h] Error 127 Made clean/distclean and still get the same error. :\
2015 Jun 12
4
1.0.15 gone, can't start version 2
On advice/recommendation received on this list, I removed version 1.0.15 with: rm -rf /usr/local/dovecot However, now that I have version 2 properly installed, configured, and ready to start testing with Postfix, it appears the old version is still in /usr/local/sbin, /usr/local/include, /usr/local/libexec, /usr/local/lib and /usr/local/shared/doc. Thinking that anything in /usr/local is
2012 Jan 27
4
[PATCH] Tools: build tests
Config.mk | 1 + tools/Makefile | 1 + tools/tests/Makefile | 20 ++++++++++++++++++++ 3 files changed, 22 insertions(+), 0 deletions(-) Build tests as part of the tools build. It is enabled with CONFIG_TESTS in Config.mk Currently disabled build of tests/regressions and tests/xen-access (in 32 bit mode) as they fail. Signed-off-by: Andres Lagar-Cavilla
2000 Jul 17
0
small patch for Makefile.in
Hi! The patch below changes the distclean rule so that "distclean" (instead of just "clean") will be executed in all subdirectories. Cheers, Martin diff -c -3 -p -r1.9 Makefile.in *** Makefile.in 2000/06/26 11:25:32 1.9 --- Makefile.in 2000/07/17 13:50:14 *************** all debug profile selftest target clean:...
2004 Sep 13
2
problems building / starting test40 + test42
...uild. Make spat the dummy in the auth directory: Making all in auth make: Fatal error in reader: Makefile, line 701: Unexpected end of line seen Current working directory /home/pkg/dovecot-1.0-test42/src/auth So, I went and checked it out, to find what certainly looked to me like an error: 697:distclean-generic clean-generic maintainer-clean-generic clean \ 698:mostlyclean distclean maintainer-clean 699: 700: checkpassword-reply.c 701: 702:# Tell versions [3.59,3.63) of GNU make to not export all variables. Originally, I tried tacking that onto the end of the preceding list, but when the...
2008 May 27
4
freebsd and snort
...d every item on the menu but I got error messages: ////////////////////////////// laptop# make all ===> snort-2.8.1_1 is marked as broken: FLEXRESP2 patch file does not incorporate cleanly. *** Error code 1 Stop in /usr/ports/security/snort. /////////////////////////////// tried "make distclean" and it didn't seem to help to clear the problem. Looked at the timestamps on the files and I don't see any files modified by the command "make all" could anyone help me on this? Thanks