diff options
author | jbj <devnull@localhost> | 1999-05-26 04:05:33 +0000 |
---|---|---|
committer | jbj <devnull@localhost> | 1999-05-26 04:05:33 +0000 |
commit | 3e2edc54224f6d36e3127816b53fd641785337a4 (patch) | |
tree | 95248d5733a584ec1507d54c30f56d6eb901edd1 /build.c | |
parent | b6b3485847db4317122e3d42db7a16d55c590222 (diff) | |
download | librpm-tizen-3e2edc54224f6d36e3127816b53fd641785337a4.tar.gz librpm-tizen-3e2edc54224f6d36e3127816b53fd641785337a4.tar.bz2 librpm-tizen-3e2edc54224f6d36e3127816b53fd641785337a4.zip |
add BuildConflicts: and BuildRequires: in spec file and src rpm.
CVS patchset: 3079
CVS date: 1999/05/26 04:05:33
Diffstat (limited to 'build.c')
-rw-r--r-- | build.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -31,7 +31,7 @@ static int checkSpec(Header h) rc = rpmdepCheck(ts, &conflicts, &numConflicts); if (rc == 0 && conflicts) { - rpmMessage(RPMMESS_ERROR, _("failed build prerequisites:\n")); + rpmMessage(RPMMESS_ERROR, _("failed build dependencies:\n")); printDepProblems(stderr, conflicts, numConflicts); rpmdepFreeConflicts(conflicts, numConflicts); rc = 1; |