This is the mail archive of the cluster-cvs@sourceware.org mailing list for the cluster.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

fence-agents: master - copyright: allow non-redhat-copyright in fenceagents


Gitweb:        http://git.fedorahosted.org/git/fence-agents.git?p=fence-agents.git;a=commitdiff;h=bdd8dae1a32b195552c3b08a59a3113948c93f6f
Commit:        bdd8dae1a32b195552c3b08a59a3113948c93f6f
Parent:        463801857a372d4dc10a2e746e7d3b5b022b0bbd
Author:        Fabio M. Di Nitto <fdinitto@redhat.com>
AuthorDate:    Fri Feb 27 13:00:23 2009 +0100
Committer:     Fabio M. Di Nitto <fdinitto@redhat.com>
CommitterDate: Fri Feb 27 13:00:23 2009 +0100

copyright: allow non-redhat-copyright in fence agents

The build system was simply stupid. Fix that to allow
proper copyright attribution.

Signed-off-by: Fabio M. Di Nitto <fdinitto@redhat.com>
---
 scripts/fenceparse |    5 ++++-
 1 files changed, 4 insertions(+), 1 deletions(-)

diff --git a/scripts/fenceparse b/scripts/fenceparse
index 8b00698..c34cb82 100644
--- a/scripts/fenceparse
+++ b/scripts/fenceparse
@@ -28,8 +28,11 @@ esac
 
 awk "{print}(\$1 ~ /#BEGIN_VERSION_GENERATION/){exit 0}" $realinfile
 echo ${start}RELEASE_VERSION=\"${release}\"${end}
-echo ${start}REDHAT_COPYRIGHT=${definedata}${end}
 echo ${start}BUILD_DATE=\"\(built $(date)\)\"${end}
+if awk -v p=0 "(\$1 ~ /#BEGIN_VERSION_GENERATION/){p = 1} (\$1 ~ /#END_VERSION_GENERATION/){p = 0} {if(p==1)print}" $realinfile | \
+		grep -q REDHAT_COPYRIGHT; then
+	echo ${start}REDHAT_COPYRIGHT=${definedata}${end}
+fi
 awk -v p=0 "(\$1 ~ /#END_VERSION_GENERATION/){p = 1} {if(p==1)print}" $realinfile
 
 exit 0


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]