summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorallen <allen@17b73243-c579-4c4c-a9d2-2d5706c11dac>1999-10-24 10:15:57 +0000
committerallen <allen@17b73243-c579-4c4c-a9d2-2d5706c11dac>1999-10-24 10:15:57 +0000
commitadd790564ab414efc14e775b6283a51fb9a3c96d (patch)
tree6628fd5c15218a81930aeb0a3d0712021251ffc6
parenta952870813d0297fbcf437b4fe6a39d7e7d098e8 (diff)
Changing the format of the ThornList comments
git-svn-id: http://svn.cactuscode.org/flesh/trunk@1086 17b73243-c579-4c4c-a9d2-2d5706c11dac
-rw-r--r--lib/sbin/MakeUtils.pl8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/sbin/MakeUtils.pl b/lib/sbin/MakeUtils.pl
index b8b5603b..1b4e086e 100644
--- a/lib/sbin/MakeUtils.pl
+++ b/lib/sbin/MakeUtils.pl
@@ -169,7 +169,7 @@ sub ThornInfo
if($inherits =~ /^[\s\t\n]*$/)
{
- $inherits = "(none)";
+ $inherits = " ";
}
else
{
@@ -180,7 +180,7 @@ sub ThornInfo
if($friends =~ /^[\s\t\n]*$/)
{
- $friends = "(none)";
+ $friends = " ";
}
else
{
@@ -190,7 +190,7 @@ sub ThornInfo
}
if($shares =~ /^[\s\t\n]*$/)
{
- $shares = "(none)";
+ $shares = " ";
}
else
{
@@ -199,7 +199,7 @@ sub ThornInfo
$shares =~ s:[\s\t\n]+:,:g;
}
- return "Implements: $implementation Inherits: $inherits Friends: $friends Shares: $shares";
+ return "$implementation ($inherits) [$friends] {$shares}";
}