From b3d27b44eaa5986d1066257bf9cc020814f99275 Mon Sep 17 00:00:00 2001 From: Sam Bingner Date: Fri, 28 Dec 2018 15:53:57 -1000 Subject: Remove RunCmd --- apt-private/private-source.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'apt-private/private-source.cc') diff --git a/apt-private/private-source.cc b/apt-private/private-source.cc index 923ea4db1..e9ec7c6cf 100644 --- a/apt-private/private-source.cc +++ b/apt-private/private-source.cc @@ -525,7 +525,7 @@ bool DoSource(CommandLine &CmdL) strprintf(S, "%s %s %s", _config->Find("Dir::Bin::dpkg-source","dpkg-source").c_str(), sourceopts.c_str(), D.Dsc.c_str()); - if (RunCmd(S.c_str()) != 0) + if (system(S.c_str()) != 0) { _error->Error(_("Unpack command '%s' failed.\n"), S.c_str()); if (SaidCheckIfDpkgDev == false) @@ -558,7 +558,7 @@ bool DoSource(CommandLine &CmdL) _config->Find("Dir::Bin::dpkg-buildpackage","dpkg-buildpackage").c_str(), buildopts.c_str()); - if (RunCmd(S.c_str()) != 0) + if (system(S.c_str()) != 0) { _error->Error(_("Build command '%s' failed.\n"), S.c_str()); continue; -- cgit v1.2.3