- remove -q flag in readcalls.c, it is a gnu uniq switch

Notified by:	Joe Hetrick <jhetrick@bitjanitor.net> (KC0VKN)
This commit is contained in:
Diane Bruce
2007-09-28 00:09:33 +00:00
parent e8d1d02a39
commit ee3138a66d
2 changed files with 12 additions and 1 deletions

View File

@@ -7,7 +7,7 @@
PORTNAME= tlf
PORTVERSION= 0.9.30
PORTREVISION= 1
PORTREVISION= 2
CATEGORIES= comms hamradio
MASTER_SITES= http://www.wwns.com/tlf/ \
http://sharon.esrac.ele.tue.nl/pub/linux/ham/tlf/

View File

@@ -0,0 +1,11 @@
--- src/readcalls.c.orig Wed Apr 5 03:16:50 2006
+++ src/readcalls.c Thu Sep 27 19:54:14 2007
@@ -563,7 +563,7 @@
showmsg ("Merging logfiles...\n");
sleep(1);
- sprintf(wgetcmd, "cat log1 log2 | sort -g -k4,4 | uniq -w79 > %s", logfile);
+ sprintf(wgetcmd, "cat log1 log2 | sort -g -k4,4 | uniq > %s", logfile);
if (system(wgetcmd) == 0)
showmsg ("Merging logs successfull\n");
else