diff options
author | brl <brl> | 2006-11-21 16:54:49 +0000 |
---|---|---|
committer | brl <brl> | 2006-11-21 16:54:49 +0000 |
commit | 41ee1578d0b079b60a224ad8a595af42b86b0c72 (patch) | |
tree | 3d1cfff1f41e9356d0fb38a90605ceef8b39f6ed /debian/patches/proper-install-info.diff | |
parent | 59dd6a0795dd27192e5c9e63a1d2648bce559326 (diff) | |
download | ratpoison-41ee1578d0b079b60a224ad8a595af42b86b0c72.zip |
update debian/ directory
Diffstat (limited to 'debian/patches/proper-install-info.diff')
-rw-r--r-- | debian/patches/proper-install-info.diff | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/debian/patches/proper-install-info.diff b/debian/patches/proper-install-info.diff new file mode 100644 index 0000000..7ecf8e4 --- /dev/null +++ b/debian/patches/proper-install-info.diff @@ -0,0 +1,26 @@ +This patch is needed when the .orig.tar.gz you are building for is +generated by a automake version having problems with Debian's +install-info command. + +Index: ratpoison-1.4.0.dfsg/doc/Makefile.in +=================================================================== +--- ratpoison-1.4.0.dfsg.orig/doc/Makefile.in 2006-06-26 11:10:08.000000000 +0200 ++++ ratpoison-1.4.0.dfsg/doc/Makefile.in 2006-06-26 11:11:08.000000000 +0200 +@@ -151,7 +151,7 @@ + uninstall-info-am: + $(PRE_UNINSTALL) + @if (install-info --version && \ +- install-info --version | fgrep -i -v debian) >/dev/null 2>&1; then \ ++ install-info --version 2>&1 | sed 1q | fgrep -i -v debian) >/dev/null 2>&1; then \ + list='$(INFO_DEPS)'; \ + for file in $$list; do \ + echo " install-info --info-dir=$(DESTDIR)$(infodir) --remove $(DESTDIR)$(infodir)/$$file"; \ +@@ -324,7 +324,7 @@ + done + @$(POST_INSTALL) + @if (install-info --version && \ +- install-info --version | fgrep -i -v debian) >/dev/null 2>&1; then \ ++ install-info --version 2>&1 | sed 1q | fgrep -i -v debian) >/dev/null 2>&1; then \ + list='$(INFO_DEPS)'; \ + for file in $$list; do \ + echo " install-info --info-dir=$(DESTDIR)$(infodir) $(DESTDIR)$(infodir)/$$file";\ |