diff options
author | Jun-ichiro itojun Hagino <itojun@FreeBSD.org> | 1997-09-12 18:33:08 +0000 |
---|---|---|
committer | Jun-ichiro itojun Hagino <itojun@FreeBSD.org> | 1997-09-12 18:33:08 +0000 |
commit | af18a81a9117af501e7a06a5e244274cd6535fb8 (patch) | |
tree | 192d3e14675d3319d8d77f04c0bb86edd160c176 /news/newsfetch | |
parent | new port of newsfetch, command-line downloader for news articles. (diff) |
forgot to include the patch. sorry!
Notes
Notes:
svn path=/head/; revision=7881
Diffstat (limited to 'news/newsfetch')
-rw-r--r-- | news/newsfetch/files/patch-aa | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/news/newsfetch/files/patch-aa b/news/newsfetch/files/patch-aa new file mode 100644 index 000000000000..9183b27ba06b --- /dev/null +++ b/news/newsfetch/files/patch-aa @@ -0,0 +1,22 @@ +--- Makefile.orig Sat Sep 13 03:33:46 1997 ++++ Makefile Sat Sep 13 03:34:12 1997 +@@ -3,9 +3,10 @@ + + objs = main.o nntp.o net.o opt.o util.o + ++all: newsfetch ++ + newsfetch: $(objs) + $(CC) -o newsfetch $(objs) +- strip newsfetch + + .c.o: + $(CC) -c $(CFLAGS) $< +@@ -14,5 +15,5 @@ + rm -f *.o newsfetch + + install: +- cp newsfetch /usr/local/bin +- cp newsfetch.1 /usr/man/man1 ++ $(INSTALL_PROGRAM) newsfetch $(PREFIX)/bin ++ $(INSTALL_MAN) newsfetch.1 $(PREFIX)/man/man1 |