summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* - quilt/diff.in, quilt/refresh.in: stop using /dev/null for addedAndreas Gruenbacher2005-11-284-7/+43
| | | | | | | | | | | | or removed files: GNU diff does not do that either, and for removed files this leads to headers that only reference $file.orig and /dev/null, so the actual file is not found. (This is only truly fixes -p0 style patches as -p1 style patches use dir.orig/file instead of dir/file.orig so the filename is not lost, but stopping to use /dev/null makes sense for -p style patches just the same. - files command: remove a redundant find_patch(). - Make top_patch() fail if there is no top patch.
* - Makefile.in: don't strip the backup-files binary in the installAndreas Gruenbacher2005-11-043-3/+11
| | | | | | target. - quilt.spec.in: set the CFLAGS to $RPM_OPT_FLAGS, and pass on the RPM release number when building quilt.
* - scripts/inspect.in: remove unnecessary path_search() functionAndreas Gruenbacher2005-10-126-63/+52
| | | | and let the shell search the path internally.
* Prevent patch_header and patch_body from mistakenly considering "---"Jean Delvare2005-10-042-2/+9
| | | | | | alone on its header line as the beginning of the patch body. This fixes a bug which had been reported on LKML: http://lkml.org/lkml/2005/10/3/147
* - quilt/files.in: Sort the file names rather than respecting the originalJean Delvare2005-09-231-1/+1
| | | | | order of the files in patches. This is slightly faster, and we don't much care about the original order.
* - configure.ac: Let the user select the find binary. Test that findJean Delvare2005-09-232-1/+22
| | | | supports -path.
* Sync with the recent behavior change of "quilt diff".Jean Delvare2005-09-231-4/+16
|
* - quilt/files.in: Sort the file names rather than respecting the originalJean Delvare2005-09-231-0/+7
| | | | | order of the files in patches. This is slightly faster, and we don't much care about the original order.
* - Fix the test suite so that directories leftover from a previouslyJean Delvare2005-09-2328-0/+33
| | | | interrupted test won't cause a test to fail.
* - Drop test/reorder.test, it duplicates test/sort.test but is lessJean Delvare2005-09-232-60/+6
| | | | complete.
* - test/run: Do not depend on Term::ReadKey.Jean Delvare2005-09-232-2/+6
|
* - Fix the test suite so that it doesn't fail if any higher-levelAndreas Gruenbacher2005-09-2326-32/+33
| | | | | directory contains a patches/ sub-directory (iow, if quilt itself is patched with quilt).
* - Makefile.in: Fix extra spaces in foreach command which were causingJean Delvare2005-09-222-1/+7
| | | | "missing separator" errors. Patch from Gary V. Vaughan.
* - configure.ac: Test sed support for (foo|bar) constructs.Jean Delvare2005-09-222-1/+20
|
* - test/sort.test: Quote grep arguments, as some grep implementations seemJean Delvare2005-09-211-4/+4
| | | | to otherwise choke on them. Original patch from John Vandenberg.
* Hide generated scripts from CVS commands.Jean Delvare2005-09-211-0/+5
|
* - configure.ac, Makefile.in: Make the cp, date and tr binariesJean Delvare2005-09-213-2/+42
| | | | | user-selectable. - configure.ac: Test grep and tr features.
* - aclocal.m4: Fix typo causing binaries with alternative names not to beJean Delvare2005-09-212-2/+8
| | | | properly handled.
* - quilt/files.in: Compute file status only when needed (that is, when -vJean Delvare2005-09-212-13/+20
| | | | | is used and -l isn't). This divides the execution time by 5 in all other cases.
* - test/subdir.test: Test quilt files -v.Jean Delvare2005-09-212-4/+16
|
* - quilt/diff.in: Add missing call to print_patch.Jean Delvare2005-09-212-1/+7
|
* - Makefile.in: Fix compat/tail symlink creation. Fix variable exportingJean Delvare2005-09-204-12/+41
| | | | | | | bashism. - configure.ac: Use grep >/dev/null instead of grep -q for compatibility. Test for grep -q, some quilt scripts need it. - test/Makefile: Fix varible exporting and script sourcing bashisms.
* - Avoid spurious rebuilds because of unnecessary chmod.Andreas Gruenbacher2005-09-196-10/+13
|
* - Makefile.in: Fix when COMPAT_PROGRAMS is empty.Andreas Gruenbacher2005-09-197-30/+77
|
* - Makefile.in: Fix harmless error message in reference rule.Jean Delvare2005-09-192-1/+6
|
* - aclocal.m4: Fix a bug causing user-selected binary names not to beJean Delvare2005-09-192-1/+7
| | | | displayed properly.
* - Use compatibility m4 for diffstat. Correctly diagnose olderAndreas Gruenbacher2005-09-193-24/+22
| | | | | | diffstat on OS X 10.3, which outputs '1.2 (patch 5)'. Update configure warning message to reflect reality that quilt diff does not accept --diffstat (John Vandenberg <jayvdb@gmail.com>).
* - quilt/mail.in: add a --sender option for specifying the envelopeAndreas Gruenbacher2005-09-192-8/+35
| | | | sender address (defaults to ${LOGNAME:-`whoami`}@`hostname -f`).
* - Rename MTA program to SENDMAIL, and improve configure.acAndreas Gruenbacher2005-09-196-23/+42
| | | | | | | (from John Vandenberg again, as several other recent things -- thanks!) - Must build the compatibility programs before creating the command reference (which extracts the help texts).
* - configure.ac: Don't run tests when using internal compatibilityAndreas Gruenbacher2005-09-193-4/+7
| | | | programs.
* - Fix --disable-nls.Andreas Gruenbacher2005-09-192-2/+3
|
* - Fix mta check when sendmail is found.Andreas Gruenbacher2005-09-192-3/+12
|
* - Add a missing $(BUILD_ROOT) and fix compat-symlink dependencies.Andreas Gruenbacher2005-09-182-5/+10
|
* - configure.ac: Test for tail -n.Jean Delvare2005-09-182-1/+21
|
* - Add missing file.Andreas Gruenbacher2005-09-181-0/+4
|
* - Makefile.in: Add a dependency of all to COMPAT_PROGRAMS whichAndreas Gruenbacher2005-09-186-8/+15
| | | | | was lost somewhere. Fix internal "mta" program. - Get rid of ``grep -E''.
* - Fix a few things in po/quilt.pot generation.Andreas Gruenbacher2005-09-189-47/+149
| | | | | | | | - Always create the mta symlink in compat/. Replace "@MTA@" with "mta" in scripts. Replace mta check in configure.ac with QUILT_COMPAT_PROG_PATH. - quilt/main.in: Add a User-Agent header. - Update the German translation.
* - Makefile.in: remove obsolete substitutions.Andreas Gruenbacher2005-09-182-9/+6
|
* - Get rid of `grep -e''.Andreas Gruenbacher2005-09-182-1/+6
|
* - Remove config.h, and use @DEFS@ in Makefile.in insteadAndreas Gruenbacher2005-09-187-106/+30
| | | | (Gary V. Vaughan <gary@gnu.org>).
* - configure.ac: Drop useless -e to grep.Jean Delvare2005-09-182-2/+7
|
* - Merge po/Makefile into Makefile.in. Add a lost @false toAndreas Gruenbacher2005-09-183-66/+51
| | | | Makefile.in.
* - lib/backup-files.c: add missing dependency on config.h. CheckAndreas Gruenbacher2005-09-189-43/+55
| | | | | for chmod and fchmod support. Remove two unnecessary chmod calls. - Makefile.in: fix cyclic dependency on Makefile.
* - Need to add -I. to CPPFLAGS.Andreas Gruenbacher2005-09-181-1/+1
|
* - lib/backup-files.c: use mktemp if mkstemp is not availableAndreas Gruenbacher2005-09-185-2/+93
| | | | (Gary V. Vaughan <gary@gnu.org>). Add a config.h.
* - lib/backup-files.c: switch from alloca to malloc for portability.Andreas Gruenbacher2005-09-182-29/+51
|
* - configure.ac: Make the tail executable user-selectable.Jean Delvare2005-09-182-1/+7
|
* - Forgot to add new files to the repository.Andreas Gruenbacher2005-09-185-0/+164
|
* - Remove compatibility shell functions and convert them toAndreas Gruenbacher2005-09-185-35/+5
| | | | standalone scripts.
* - Replace @FOO@ macros in scripts with foo command where possible.Andreas Gruenbacher2005-09-1817-89/+89
|