linux-sparse.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* Debian package; trivial fixes
@ 2006-11-09 15:19 Loïc Minier
  2006-11-21 16:51 ` Josh Triplett
  2006-11-21 17:08 ` Josh Triplett
  0 siblings, 2 replies; 3+ messages in thread
From: Loïc Minier @ 2006-11-09 15:19 UTC (permalink / raw)
  To: linux-sparse

[-- Attachment #1: Type: text/plain, Size: 564 bytes --]

        Hi,

 I've prepared and uploaded a Debian package for sparse 0.1:
    <http://people.dooz.org/~lool/debian/sparse/0.1-1/sid-pbuilder/>

 FYI, It is currently targetted at Debian "non-free" due to the choice
 of venue clause in the license.  I think the patent clause is slightly
 problematic but might be acceptable for Debian "main".


 Please find attached a trivial fix for .gitignore where "check" wasn't
 renamed to "sparse".

 It would also be more convenient to create BINDIR automatically on make
 install.

   Bye,
-- 
Loïc Minier <lool@dooz.org>

[-- Attachment #2: rename-sparse-in-dot-gitignore.patch --]
[-- Type: text/plain, Size: 241 bytes --]

diff --git a/.gitignore b/.gitignore
index 3e12ce7..665ad03 100644
--- a/.gitignore
+++ b/.gitignore
@@ -11,9 +11,9 @@ pre-process.h
 test-lexing
 test-parsing
 obfuscate
-check
 compile
 graph
+sparse
 test-dissect
 test-linearize
 example

[-- Attachment #3: create-bindir.patch --]
[-- Type: text/plain, Size: 550 bytes --]

diff --git a/Makefile b/Makefile
index 2dcd514..920fe67 100644
--- a/Makefile
+++ b/Makefile
@@ -40,18 +40,12 @@ LIBS=$(LIB_FILE)
 
 all: $(PROGRAMS)
 
-install: $(INST_PROGRAMS) bin-dir
+install: $(INST_PROGRAMS)
+	install -d $(BINDIR)
 	for f in $(INST_PROGRAMS); do \
 		install -v $$f $(BINDIR)/$$f || exit 1; \
 	done
 
-bin-dir:
-	@if ! test -d $(BINDIR); then \
-		echo "No '$(BINDIR)' directory to install in"; \
-		echo "Please create it and add it to your PATH"; \
-		exit 1; \
-	fi
-
 .PHONY: bin-dir
 
 test-lexing: test-lexing.o $(LIBS)

^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2006-11-21 17:08 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2006-11-09 15:19 Debian package; trivial fixes Loïc Minier
2006-11-21 16:51 ` Josh Triplett
2006-11-21 17:08 ` Josh Triplett

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).