Package: jwm Version: 2.0.1-2 Severity: wishlist
The patch modifies src/Makefile.in target "install" to use DESTDIR and modes 755. Hope this is included in next release. -- System Information: Debian Release: squeeze/sid APT prefers testing APT policy: (990, 'testing'), (500, 'unstable'), (1, 'experimental') Architecture: amd64 (x86_64) Kernel: Linux 2.6.30-2-amd64 (SMP w/2 CPU cores) Locale: LANG=en_DK.UTF-8, LC_CTYPE=en_DK.UTF-8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/dash Versions of packages jwm depends on: ii libc6 2.10.2-2 GNU C Library: Shared libraries ii libfribidi0 0.10.9-1 Free Implementation of the Unicode ii libjpeg62 6b-15 The Independent JPEG Group's JPEG ii libpng12-0 1.2.40-1 PNG library - runtime ii libx11-6 2:1.3.2-1 X11 client-side library ii libxext6 2:1.0.4-1 X11 miscellaneous extension librar ii libxft2 2.1.13-3 FreeType-based font drawing librar ii libxinerama1 2:1.0.3-2 X11 Xinerama extension library ii libxpm4 1:3.5.8-1 X11 pixmap library ii libxrender1 1:0.9.5-1 X Rendering Extension client libra jwm recommends no packages. Versions of packages jwm suggests: ii menu 2.1.42 generates programs menu for all me ii x11-apps 7.4+2 X applications -- no debconf information
>From 67b122e70f035430250a6af6b0f56e4c6496bff3 Mon Sep 17 00:00:00 2001 From: Jari Aalto <jari.aa...@cante.net> Date: Sat, 12 Dec 2009 19:08:24 +0200 Subject: [PATCH] src/Makefile.in: (install): Install with modes 755 to DESTDIR Signed-off-by: Jari Aalto <jari.aa...@cante.net> --- src/Makefile.in | 7 +++---- 1 files changed, 3 insertions(+), 4 deletions(-) diff --git a/src/Makefile.in b/src/Makefile.in index 578597d..cb2b576 100644 --- a/src/Makefile.in +++ b/src/Makefile.in @@ -1,8 +1,8 @@ - CC = @CC@ CFLAGS = @CFLAGS@ LDFLAGS = @LDFLAGS@ -BINDIR = @BINDIR@ + +BINDIR = $(DESTDIR)@BINDIR@ VPATH=.:os @@ -22,7 +22,7 @@ all: $(EXE) install: all strip $(EXE) install -d $(BINDIR) - install $(EXE) $(BINDIR)/$(EXE) + install -m 0755 $(EXE) $(BINDIR)/$(EXE) depend: makedepend -m -DMAKE_DEPEND -- $(CFLAGS) -- *.c @@ -35,4 +35,3 @@ $(EXE): $(OBJECTS) clean: rm -f $(OBJECTS) $(EXE) core - -- 1.6.5