d94d6330a1
moreutils is a growing collection of the unix tools that nobody thought to write long ago when unix was young, including amongst others: lckdo: execute a program with a lock held mispipe: pipe two commands, returning the exit status of the first pee: tee standard input to pipes sponge: soak up standard input and write to a file ts: timestamp standard input vidir: edit a directory in your text editor vipe: insert a text editor into a pipe zrun: automatically uncompress arguments to command
22 lines
840 B
Plaintext
22 lines
840 B
Plaintext
$OpenBSD: patch-Makefile,v 1.1.1.1 2011/05/04 14:11:59 sthen Exp $
|
|
--- Makefile.orig Fri Oct 29 20:47:09 2010
|
|
+++ Makefile Sun May 1 13:41:02 2011
|
|
@@ -1,4 +1,5 @@
|
|
-BINS=isutf8 ifdata ifne pee sponge mispipe lckdo parallel
|
|
+BINS=isutf8 ifdata ifne pee sponge mispipe lckdo
|
|
+#parallel - wants waitid()
|
|
PERLSCRIPTS=vidir vipe ts combine zrun chronic
|
|
MANS=sponge.1 vidir.1 vipe.1 isutf8.1 ts.1 combine.1 ifdata.1 ifne.1 pee.1 zrun.1 chronic.1 mispipe.1 lckdo.1 parallel.1
|
|
CFLAGS=-O2 -g -Wall
|
|
@@ -17,8 +18,8 @@ install:
|
|
$(INSTALL_BIN) $(BINS) $(DESTDIR)$(PREFIX)/bin
|
|
install $(PERLSCRIPTS) $(DESTDIR)$(PREFIX)/bin
|
|
|
|
- mkdir -p $(DESTDIR)$(PREFIX)/share/man/man1
|
|
- install $(MANS) $(DESTDIR)$(PREFIX)/share/man/man1
|
|
+ mkdir -p $(DESTDIR)$(PREFIX)/man/man1
|
|
+ install $(MANS) $(DESTDIR)$(PREFIX)/man/man1
|
|
|
|
check: isutf8
|
|
./check-isutf8
|