Sign in
gfiber
/
vendor
/
opensource
/
netsnmp
/
e0280294e7e6bebd62fbab9928b1b5f01b735e72
/
.
/
makenosysdepend.pl
blob: e7e5dcc07b62ed8086c0f4a0493b29478bcb28d4 [
file
] [
log
] [
blame
]
#!/usr/bin/perl
# hack: strip include dependancies that are probably not in our source tree.
if
(
/^\# DO NOT DELETE THIS LINE/
)
{
$doit
=
1
;
}
if
(
$doit
==
1
)
{
s
#/usr/(include|lib|local)/[\S]+##g;
print
if
(!
/^[^:]+\.lo:\s*$/
);
}
else
{
print
;
}