diff options
author | Hannu Nyman <hannu.nyman@iki.fi> | 2016-11-25 16:08:31 +0200 |
---|---|---|
committer | John Crispin <john@phrozen.org> | 2016-11-26 21:59:40 +0100 |
commit | a22464b92f2eedb7951237e0d8d505188d32ddc0 (patch) | |
tree | a98d5fdb5b97737b95adbf4626472f701a2a6367 /tools/quilt | |
parent | a6e790b20253aa53f9a82a3331cc59fe40ff7ff7 (diff) | |
download | upstream-a22464b92f2eedb7951237e0d8d505188d32ddc0.tar.gz upstream-a22464b92f2eedb7951237e0d8d505188d32ddc0.tar.bz2 upstream-a22464b92f2eedb7951237e0d8d505188d32ddc0.zip |
tools/quilt: update to 0.65
User-visible changes since 0.64 are as follows:
- Translation fixes
- Project settings have priority
- Reject binary files in patches
- Fix a race condition in diff_file
- Performance: Optimizations to the setup command
- Performance: Optimizations to the bash completion script
- Test suite: Improve the edit test case
- Test suite: Make the symlink test more robust
- Test suite: Test backup failure
- Test suite: Test the header command with hard links
- diff: Report diff failures
- edit: Fix a corner case bug
- mail: Fix the help text
- push: Fix the synopsis
- refresh: Do not remove symlinks
- refresh: Break links to read-only patch files
- refresh: Always preserve modification time
- setup: Report failed look-ups in inspect-wrapper
- quilt.el: Fix quilt-editable when patches are stored in subdirs
- bash_completion: Handle spaces in file names
- bash_completion: Update the list of commands
- bash_completion: Add new command options
- bash_completion: Fix handling of mail, new, push options
- guards: Simplify the help text
- guards: Include the file name also in the "Not found" case
- guards: Add support for an external filelist in --check mode
- guards: Report which config file has problem in --check mode
- guards: Documentation update
- guards: Clarify a user message
Note to packagers: the Makefile was modified to take configure's
--sysconfdir into account as other projects do. As a result, setting
--prefix=/usr will no longer put the configuration files under /etc.
You now need to explicitly pass --sysconfdir=/etc. If you don't,
configuration files will go under /usr/etc, which is not what you want.
This is somewhat less intuitive, but also more consistent with what
other projects are doing.
Signed-off-by: Hannu Nyman <hannu.nyman@iki.fi>
Diffstat (limited to 'tools/quilt')
-rw-r--r-- | tools/quilt/Makefile | 4 | ||||
-rw-r--r-- | tools/quilt/patches/001-fix_compile.patch | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/tools/quilt/Makefile b/tools/quilt/Makefile index 939ba69163..1cfa57791b 100644 --- a/tools/quilt/Makefile +++ b/tools/quilt/Makefile @@ -7,11 +7,11 @@ include $(TOPDIR)/rules.mk PKG_NAME:=quilt -PKG_VERSION:=0.64 +PKG_VERSION:=0.65 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz PKG_SOURCE_URL:=@SAVANNAH/quilt -PKG_MD5SUM:=fc0310db5868a0873d602d4332a76d43 +PKG_MD5SUM:=c67ba0228f5b7b8bbe469474661f92d6 include $(INCLUDE_DIR)/host-build.mk diff --git a/tools/quilt/patches/001-fix_compile.patch b/tools/quilt/patches/001-fix_compile.patch index 3ce93f0cf8..c829515f83 100644 --- a/tools/quilt/patches/001-fix_compile.patch +++ b/tools/quilt/patches/001-fix_compile.patch @@ -1,6 +1,6 @@ --- a/Makefile.in +++ b/Makefile.in -@@ -271,13 +271,10 @@ $(patsubst %.in,%,$(wildcard bin/*.in qu +@@ -272,13 +272,10 @@ $(patsubst %.in,%,$(wildcard bin/*.in qu @$(if $(filter $@,$(NON_EXEC_IN)),,chmod +x $@) configure : configure.ac aclocal.m4 |