summaryrefslogtreecommitdiffstats
path: root/Makefile.in
Commit message (Collapse)AuthorAgeFilesLines
* Remove parse-patch which is no longer usedJean Delvare2012-01-281-1/+1
| | | | | | | | Based on a preliminary patch by Yasushi SHOJI. None of quilt code uses parse-patch anymore. The last one, it seems, was contrib/import.diff, which was removed at 2f9728a9. So, just remove it.
* Store the quilt command reference once generatedJean Delvare2012-01-101-8/+7
| | | | This avoids generating it twice, once for README and once for quilt.1.
* Silent the generation of the quilt manual page, for consistencyJean Delvare2012-01-101-1/+1
|
* No need to delete doc/quilt.1 twice on "make clean"Jean Delvare2012-01-101-4/+4
|
* ensure that bash is used as a shell, even if it's not the default oneMartin Quinson2012-01-091-0/+1
|
* Revert "Fix auto-generation of quilt.1 to work with dash"Martin Quinson2012-01-091-5/+5
| | | | | | | | | | | This reverts commit 5f17e6f29c22282a4bf2819ac7ee08c942e6e103. We rely on bash for the rest of quilt, so it is no real issue to rely on it for the makefile. If we try to remove it, we have to deal with the portability another way. For example, BSD and Mac OSX versions of sed are not able to deal with \n by themselves... The correct fix will be to force the SHELL to be bash in the makefile.
* Fix auto-generation of quilt.1 to work with dashMartin Quinson2012-01-011-5/+5
| | | | | | | | | | | | | | | | | | | The echo command of dash interprets \f as a special characer and thus generates a bad manual page. bash's echo leaves them unchanged (it needs -e to replace those special characters). Using printf instead is a portable solution that work with both shells. . The code also uses a bashism ($'') but it's not really needed with GNU sed at least (it understands \t and \n) so drop it and avoid some painful double escaping. . This patch was written by Raphael Hertzog for the Debian package, and updated by Martin Quinson so that it applies on lastest upstream sources. Author: Raphael Hertzog <hertzog@debian.org> Bug-Ubuntu: https://bugs.launchpad.net/ubuntu/+source/quilt/+bug/402237 Bug-Debian: http://bugs.debian.org/563517
* Makefile.in: Really skip setting execute bit on scripts/patchfnsJean Delvare2011-12-161-1/+1
|
* configure*, Makefile.in: Use the standard docdir definitionJean Delvare2011-12-161-6/+7
| | | | | That way, it can be easily changed from the command line, which was not the case before.
* Man page: substitute documentation directory name in path to PDF documentationJean Delvare2011-12-061-0/+4
|
* integrate the ru translation into the compilation frameworkMartin Quinson2011-09-291-1/+1
|
* Fix i18n of quilt/scripts/patchfnsJean Delvare2011-03-181-1/+2
| | | | (Broken by previous commit, sorry.)
* Don't build quilt.spec by default, it's only needed for packaging purposes.Jean Delvare2011-02-061-1/+1
|
* Do not hard-code the location of /etc; use $(etcdir) insteadAndreas Gruenbacher2010-06-091-0/+1
|
* Let the test suite be run in parallelJean Delvare2010-01-231-2/+1
| | | | | | | | | | | Add an option to the test case runner script to generate an output suitable for parallel runs: * Print the full output at the end of the test case, all at once. * Only output the detailed commands on failed test cases. This makes it possible and convenient to run the test suite in parallel on SMP systems.
* Make git-desc work even outside git repositories and include it in tarballsAndreas Gruenbacher2009-06-171-1/+1
|
* make snapshot: strip the v from v$version tags.Andreas Gruenbacher2009-02-031-1/+1
|
* Add the generated files configure and quilt.spec to the repository so thatAndreas Gruenbacher2009-02-031-1/+1
| | | | reposititory snapshots can simply be used as release tarballs.
* Convert to git repository formatv0.48Andreas Gruenbacher2009-01-291-7/+7
|
* - Fix from Dean Roehrich <Dean.Roehrich@sun.com> for Solaris:Andreas Gruenbacher2008-11-021-2/+2
| | | | | | "I ran into a case solaris ON build 99 where configure found ginstall, but the Makefile.in used something else, and that led to things going a bit haywire."
* - Add a dual BSD/GPL license header to test/run.Andreas Gruenbacher2008-11-021-1/+1
| | | | | - Only run test/patch-wrapper.test if the --with-patch-wrapper config option is used.
* +- Bump version to 0.47.v0.47Andreas Gruenbacher2008-08-211-0/+5
| | | | | +- Add a new "publish" makefile target for pushing releases to + savannah.nongnu.org.
* - Fix `make snapshot'.Andreas Gruenbacher2007-10-291-7/+7
| | | | - Make the changelog file chronological.
* Dependencies of quilt/* on quilt/scripts/* are run-time dependencies forJean Delvare2007-04-221-3/+6
| | | | the test suite, not build-time dependencies.
* Make pod2man optional (./configure --without-pod2man).Andreas Gruenbacher2007-04-191-1/+4
|
* - Install quilt.el into $(datadir)/emacs/site-lisp/.Andreas Gruenbacher2007-04-181-1/+5
|
* - Add quilt.el and its README file. (The emacs mode is not beingAndreas Gruenbacher2007-04-151-2/+2
| | | | installed properly, yet.)
* - Makefile.in: Set LC_ALL=C before running the regression tests,Jean Delvare2006-09-181-2/+2
| | | | | setting LANG alone isn't sufficient because LC_ALL overrides LANG when set.
* - Makefile.in: replace $(datadir)/man with configure's @mandir@ macro.Andreas Gruenbacher2006-07-141-1/+1
|
* - Add @datarootdir@ macro which future versions of Autoconf willAndreas Gruenbacher2006-04-241-0/+1
| | | | | start to use in @datadir@ (bug 16155, patch from Ralf Wildenhues).
* - Makefile.in: configure depends on aclocal.m4 too.Jean Delvare2006-03-251-1/+1
| | | | | | | | | - configure.ac: Cleanup two QUILT_COMPAT_PROG_PATH calls, the second parameter is not supposed to be a list. - aclocal.m4: Document the fourth (optional) parameter of QUILT_COMPAT_PROG_PATH. - aclocal.m4: No need to check for binaries we were told not to use.
* - Makefile.in: Fix building with GNU make < 3.80.Jean Delvare2006-03-201-21/+9
|
* - Makefile.in: Fix pseudo-symlinks under compat not being removedJean Delvare2006-03-121-2/+2
| | | | by "make clean".
* - bin/patch-wrapper.in: Call GNU patch by absolute patch to avoidAndreas Gruenbacher2006-02-111-0/+1
| | | | | recursion. Don't print an error message when a patch contains no files.
* - bin/patch-wrapper.in: Fix permissions of installed file.Andreas Gruenbacher2006-02-081-1/+1
| | | | | - quilt/scripts/inspect.in: Improve recognition of patch's -i and --input options.
* - Add --with-patch-wrapper configure argument, and optionallyAndreas Gruenbacher2006-02-061-5/+12
| | | | | install the wrapper as /usr/share/quilt/wrapper/patch. - bin/patch-wrapper.in: Minor cleanups.
* - bin/patch-wrapper.in: A wrapper to GNU patch that recognizes theAndreas Gruenbacher2006-02-061-1/+2
| | | | | | | | | | most common options and mimics GNU patch's behavior and output, and creates the quilt metadata as if quilt push was used to apply the patch. When options are used that this wrapper does not recognize, GNU patch is used directly, and no quilt metadata will get created. - lib/backup-files.c: Don't fail if a directory specified with -B does not exist.
* - make dist: Add the missing aclocal.m4 to the tarball.Andreas Gruenbacher2006-02-041-1/+1
|
* - configure.ac: Remove uniq -D test; we no longer use it.Andreas Gruenbacher2006-02-011-1/+0
| | | | | | | - compat/date.in: Compatibility wrapper that emulates the GNU date features that quilt depends on (with minor cleanups from Andreas Gruenbacher). - configure.ac: Add test for date --rfc-822.
* - Check for GNU uniq, and test if uniq -D is supported (from GaryAndreas Gruenbacher2006-01-311-0/+1
| | | | V. Vaughan).
* - Makefile.in: The trailing slash in `find compat/' is causing OSXAndreas Gruenbacher2006-01-301-1/+1
| | | | | | /usr/bin/find to print 'compat//sed', etc. As a result, they are appearing in compat_leftover, being removed in the middle of the build, causing errors during the construction of $(DOC).
* - Makefile.in: Add a missing dependency.Andreas Gruenbacher2006-01-291-1/+3
|
* - Stop using bash <(...) process substitution: it triggers bugsAndreas Gruenbacher2006-01-271-1/+1
| | | | | | on some platforms. - In source tree compat/ "virtual symlink" scripts, exec the target binary instead of only calling it.
* - Makefile.in: Have Makefile depend on configure, so that theJean Delvare2006-01-261-1/+1
| | | | | user runs ./configure only once if both Makefile.in and configure.ac have changed.
* - lib/backup-files.c: Stop using ftw and implement our own dirAndreas Gruenbacher2006-01-261-2/+2
| | | | | walking: ftw is a portability nightmare. The foreachdir function is based a proposal from Gary V. Vaughan <gary@gnu.org>, thanks!
* - quilt/import.in: Improve the help text.Andreas Gruenbacher2006-01-251-1/+6
| | | | - Makefile.in: Make sure configure is up to date.
* - Fix make check-all and make check-*.Andreas Gruenbacher2006-01-231-3/+3
|
* - A better rule for test/.depend.Andreas Gruenbacher2006-01-231-26/+8
| | | | | | | - In order to run make check immediately after configure, a few minor dependencies need to be added. - The test suite depends on the compat layer and backup-files. - quilt/refresh depends on remove-trailing-ws.
* - Don't include any object files in LIBOBJS that we don't have.Andreas Gruenbacher2006-01-221-1/+1
|
* - Remove obsolete @MTA@ substitution.Andreas Gruenbacher2006-01-221-1/+0
|