diff options
author | Florent Thoumie <flz@FreeBSD.org> | 2008-06-16 23:41:11 +0000 |
---|---|---|
committer | Florent Thoumie <flz@FreeBSD.org> | 2008-06-16 23:41:11 +0000 |
commit | 74572e9e635525e04a4e61b8a1e35b8b434da8ed (patch) | |
tree | 80025785a72ffe15367413befe15285f7296a16b /usr.sbin/pkg_install/add/perform.c | |
parent | 8fecbb4e34986b99af32f90d223d25e7a746ff08 (diff) |
Remove support for RELENG_4 (__FreeBSD_version < 500039).
MFC after: 1 day
Notes
Notes:
svn path=/head/; revision=179835
Diffstat (limited to 'usr.sbin/pkg_install/add/perform.c')
-rw-r--r-- | usr.sbin/pkg_install/add/perform.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/usr.sbin/pkg_install/add/perform.c b/usr.sbin/pkg_install/add/perform.c index b4130d1ce12a..872c7a8ce8bc 100644 --- a/usr.sbin/pkg_install/add/perform.c +++ b/usr.sbin/pkg_install/add/perform.c @@ -308,11 +308,7 @@ pkg_do(char *pkg) ext = strrchr(pkg_fullname, '.'); if (ext == NULL) -#if defined(__FreeBSD_version) && __FreeBSD_version >= 500039 ext = ".tbz"; -#else - ext = ".tgz"; -#endif snprintf(path, FILENAME_MAX, "%s/%s%s", getenv("_TOP"), p->name, ext); if (fexists(path)) cp = path; |