Deleted Added
full compact
perform.c (22997) perform.c (26473)
1#ifndef lint
1#ifndef lint
2static const char *rcsid = "$Id$";
2static const char *rcsid = "$Id: perform.c,v 1.34 1997/02/22 16:09:28 peter Exp $";
3#endif
4
5/*
6 * FreeBSD install - a package for the installation and maintainance
7 * of non-core utilities.
8 *
9 * Redistribution and use in source and binary forms, with or without
10 * modification, are permitted provided that the following conditions

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

78 add_plist(&plist, PLIST_PKGDEP, cp);
79 if (Verbose && !PlistOnly)
80 printf(" %s", cp);
81 }
82 }
83 if (Verbose && !PlistOnly)
84 printf(".\n");
85 }
3#endif
4
5/*
6 * FreeBSD install - a package for the installation and maintainance
7 * of non-core utilities.
8 *
9 * Redistribution and use in source and binary forms, with or without
10 * modification, are permitted provided that the following conditions

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

78 add_plist(&plist, PLIST_PKGDEP, cp);
79 if (Verbose && !PlistOnly)
80 printf(" %s", cp);
81 }
82 }
83 if (Verbose && !PlistOnly)
84 printf(".\n");
85 }
86
87 /* If a SrcDir override is set, add it now */
88 if (SrcDir) {
89 if (Verbose && !PlistOnly)
90 printf("Using SrcDir value of %s\n", SrcDir);
91 add_plist(&plist, PLIST_SRC, SrcDir);
92 }
93
86 /* Slurp in the packing list */
87 read_plist(&plist, pkg_in);
88
89 /* Prefix should override the packing list */
90 if (Prefix) {
91 delete_plist(&plist, FALSE, PLIST_CWD, NULL);
92 add_plist_top(&plist, PLIST_CWD, Prefix);
93 }

--- 188 unchanged lines hidden ---
94 /* Slurp in the packing list */
95 read_plist(&plist, pkg_in);
96
97 /* Prefix should override the packing list */
98 if (Prefix) {
99 delete_plist(&plist, FALSE, PLIST_CWD, NULL);
100 add_plist_top(&plist, PLIST_CWD, Prefix);
101 }

--- 188 unchanged lines hidden ---