blob: 5becde25d741dfc28dee906f1f21f17762612862 [file] [log] [blame]
#!/usr/bin/python -O
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id: /var/cvsroot/gentoo-src/portage/bin/xpak,v 1.10 2004/10/04 13:56:50 vapier Exp $
import sys
if len(sys.argv)!=3:
print "xpak: expecting three arguments."
sys.exit(1)
sys.path = ["/usr/lib/portage/pym"]+sys.path
import xpak
xpak.xpak(sys.argv[1],sys.argv[2])