blob: 158938a1e9dfeae193c8722c5288e33a5d36f7a0 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#!/bin/sh
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
#
my_nsdc="/usr/sbin/nsdc"
if test -x ${my_nsdc}; then
${my_nsdc} patch 1>/dev/null
fi
|