Deleted Added
full compact
perform.c (38583) perform.c (38931)
1#ifndef lint
2static const char rcsid[] =
1#ifndef lint
2static const char rcsid[] =
3 "$Id: perform.c,v 1.50 1998/07/17 14:56:31 eivind Exp $";
3 "$Id: perform.c,v 1.51 1998/08/27 14:59:55 jkh Exp $";
4#endif
5
6/*
7 * FreeBSD install - a package for the installation and maintainance
8 * of non-core utilities.
9 *
10 * Redistribution and use in source and binary forms, with or without
11 * modification, are permitted provided that the following conditions

--- 241 unchanged lines hidden (view full) ---

253 printf("Loading it from %s.\n", cp);
254 if (vsystem("pkg_add %s%s", Verbose ? "-v " : "", cp)) {
255 warnx("autoload of dependency `%s' failed%s",
256 cp, Force ? " (proceeding anyway)" : "!");
257 if (!Force)
258 ++code;
259 }
260 }
4#endif
5
6/*
7 * FreeBSD install - a package for the installation and maintainance
8 * of non-core utilities.
9 *
10 * Redistribution and use in source and binary forms, with or without
11 * modification, are permitted provided that the following conditions

--- 241 unchanged lines hidden (view full) ---

253 printf("Loading it from %s.\n", cp);
254 if (vsystem("pkg_add %s%s", Verbose ? "-v " : "", cp)) {
255 warnx("autoload of dependency `%s' failed%s",
256 cp, Force ? " (proceeding anyway)" : "!");
257 if (!Force)
258 ++code;
259 }
260 }
261 else {
262 warnx("could not find package %s %s",
263 p->name, Force ? " (proceeding anyway)" : "!");
264 if (!Force)
265 ++code;
266 }
261 }
262 else if ((cp = fileGetURL(pkg, p->name)) != NULL) {
263 if (Verbose)
264 printf("Finished loading %s over FTP.\n", p->name);
265 if (!fexists("+CONTENTS")) {
266 warnx("autoloaded package %s has no +CONTENTS file?",
267 p->name);
268 if (!Force)

--- 222 unchanged lines hidden ---
267 }
268 else if ((cp = fileGetURL(pkg, p->name)) != NULL) {
269 if (Verbose)
270 printf("Finished loading %s over FTP.\n", p->name);
271 if (!fexists("+CONTENTS")) {
272 warnx("autoloaded package %s has no +CONTENTS file?",
273 p->name);
274 if (!Force)

--- 222 unchanged lines hidden ---