summaryrefslogtreecommitdiff
path: root/rpmqv.c
diff options
context:
space:
mode:
authorPanu Matilainen <pmatilai@redhat.com>2008-06-24 11:08:05 +0300
committerPanu Matilainen <pmatilai@redhat.com>2008-06-24 11:08:05 +0300
commit6f06fff34884e334cd5eab3b371481b4e1039876 (patch)
tree8bb4f8d05cf13684911abe480c72ee61306a91cb /rpmqv.c
parentaa9a791d808f504781d0b75255df3387383a1809 (diff)
downloadlibrpm-tizen-6f06fff34884e334cd5eab3b371481b4e1039876.tar.gz
librpm-tizen-6f06fff34884e334cd5eab3b371481b4e1039876.tar.bz2
librpm-tizen-6f06fff34884e334cd5eab3b371481b4e1039876.zip
Eliminate the pointless rpmb + rpmt symlinkery
- just build "rpmbuild" executable and install to bindir instead of mucking with several different names
Diffstat (limited to 'rpmqv.c')
-rw-r--r--rpmqv.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/rpmqv.c b/rpmqv.c
index 860be22f2..16c35878b 100644
--- a/rpmqv.c
+++ b/rpmqv.c
@@ -211,9 +211,7 @@ int main(int argc, char *argv[])
/* Set the major mode based on argv[0] */
#ifdef IAM_RPMBT
- if (!strcmp(__progname, "rpmb")) bigMode = MODE_BUILD;
- if (!strcmp(__progname, "lt-rpmb")) bigMode = MODE_BUILD;
- if (!strcmp(__progname, "rpmt")) bigMode = MODE_TARBUILD;
+ if (!strcmp(__progname, "lt-rpmbuild")) bigMode = MODE_BUILD;
if (!strcmp(__progname, "rpmbuild")) bigMode = MODE_BUILD;
#endif
#ifdef IAM_RPMQV