summaryrefslogtreecommitdiffstats
path: root/bin/dodir
blob: ced7ff70f209339e1da1295f2cf53841db949577 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/bash
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id: /var/cvsroot/gentoo-src/portage/bin/dodir,v 1.5 2004/10/04 13:56:50 vapier Exp $

ret=0

for x in "$@" ; do
	install -d ${DIROPTIONS} "${D}${x}"
	((ret+=$?))
done

exit ${ret}