diff options
author | Panu Matilainen <pmatilai@redhat.com> | 2008-06-24 11:08:05 +0300 |
---|---|---|
committer | Panu Matilainen <pmatilai@redhat.com> | 2008-06-24 11:08:05 +0300 |
commit | 6f06fff34884e334cd5eab3b371481b4e1039876 (patch) | |
tree | 8bb4f8d05cf13684911abe480c72ee61306a91cb /rpmqv.c | |
parent | aa9a791d808f504781d0b75255df3387383a1809 (diff) | |
download | librpm-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.c | 4 |
1 files changed, 1 insertions, 3 deletions
@@ -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 |