diff options
author | itojun <itojun@FreeBSD.org> | 1997-09-13 02:33:08 +0800 |
---|---|---|
committer | itojun <itojun@FreeBSD.org> | 1997-09-13 02:33:08 +0800 |
commit | 3c8c65b4004a6b6b31dc83af73c1f4d7ba9b7613 (patch) | |
tree | e1cc069ee06983d31d236ee5bff98d42b18713ec /news | |
parent | 08413f03b0e80b283c74f0f1c4808c2375b2d16e (diff) | |
download | freebsd-ports-gnome-3c8c65b4004a6b6b31dc83af73c1f4d7ba9b7613.tar.gz freebsd-ports-gnome-3c8c65b4004a6b6b31dc83af73c1f4d7ba9b7613.tar.zst freebsd-ports-gnome-3c8c65b4004a6b6b31dc83af73c1f4d7ba9b7613.zip |
forgot to include the patch. sorry!
Diffstat (limited to 'news')
-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 |