Date: Tue, 26 Sep 2000 07:00:04 -0700 (PDT) From: Peter Pentchev <roam@orbitel.bg> To: freebsd-ports@FreeBSD.org Subject: Re: ports/21558: Problem with skill-4.0 port Message-ID: <200009261400.HAA64444@freefall.freebsd.org>
next in thread | raw e-mail | index | archive | help
The following reply was made to PR ports/21558; it has been noted by GNATS. From: Peter Pentchev <roam@orbitel.bg> To: bvi@rucus.ru.ac.za Cc: FreeBSD-gnats-submit@freebsd.org Subject: Re: ports/21558: Problem with skill-4.0 port Date: Tue, 26 Sep 2000 16:50:10 +0300 I've forwarded this PR to the skill port maintainer - jonny@jonny.eng.br - along with another suggested fix - I think eliminating the configuration script is too radical a solution :) Attached is a patch to the port tree which adds a new patch, adding 4 lines to the GuessOS script to identify FreeBSD at once by the `uname -s` output. G'luck, Peter -- This sentence is false. diff -urN ports/sysutils/skill/patches/patch-ab myports/sysutils/skill/patches/patch-ab --- ports/sysutils/skill/patches/patch-ab Thu Jan 1 02:00:00 1970 +++ myports/sysutils/skill/patches/patch-ab Tue Sep 26 15:44:05 2000 @@ -0,0 +1,14 @@ +--- ./GuessOS.orig Tue May 30 05:03:08 2000 ++++ ./GuessOS Tue Sep 26 15:42:53 2000 +@@ -9,6 +9,11 @@ + # or, failing that, the location of some files. + # + ++if test "`exec 2>/dev/null; uname -s`" = "FreeBSD"; then ++ echo bsd44; ++ exit 0; ++fi ++ + case "`exec 2>/dev/null; head -2 /etc/motd`" in + *"IBM AIX Version 3"*) + OS=aix3 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200009261400.HAA64444>