Deleted Added
full compact
perform.c (39068) perform.c (41866)
1#ifndef lint
2static const char rcsid[] =
1#ifndef lint
2static const char rcsid[] =
3 "$Id: perform.c,v 1.24 1998/02/16 17:16:38 jkh Exp $";
3 "$Id: perform.c,v 1.25 1998/09/11 07:26:58 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

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

174 if (Flags & SHOW_DESC)
175 show_file("Description:\n", DESC_FNAME);
176 if ((Flags & SHOW_DISPLAY) && fexists(DISPLAY_FNAME))
177 show_file("Install notice:\n", DISPLAY_FNAME);
178 if (Flags & SHOW_PLIST)
179 show_plist("Packing list:\n", &plist, (plist_t)-1);
180 if ((Flags & SHOW_INSTALL) && fexists(INSTALL_FNAME))
181 show_file("Install script:\n", INSTALL_FNAME);
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

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

174 if (Flags & SHOW_DESC)
175 show_file("Description:\n", DESC_FNAME);
176 if ((Flags & SHOW_DISPLAY) && fexists(DISPLAY_FNAME))
177 show_file("Install notice:\n", DISPLAY_FNAME);
178 if (Flags & SHOW_PLIST)
179 show_plist("Packing list:\n", &plist, (plist_t)-1);
180 if ((Flags & SHOW_INSTALL) && fexists(INSTALL_FNAME))
181 show_file("Install script:\n", INSTALL_FNAME);
182 if ((Flags & SHOW_INSTALL) && fexists(POST_INSTALL_FNAME))
183 show_file("Post-Install script:\n", POST_INSTALL_FNAME);
182 if ((Flags & SHOW_DEINSTALL) && fexists(DEINSTALL_FNAME))
183 show_file("De-Install script:\n", DEINSTALL_FNAME);
184 if ((Flags & SHOW_DEINSTALL) && fexists(DEINSTALL_FNAME))
185 show_file("De-Install script:\n", DEINSTALL_FNAME);
186 if ((Flags & SHOW_DEINSTALL) && fexists(POST_DEINSTALL_FNAME))
187 show_file("Post-DeInstall script:\n", POST_DEINSTALL_FNAME);
184 if ((Flags & SHOW_MTREE) && fexists(MTREE_FNAME))
185 show_file("mtree file:\n", MTREE_FNAME);
186 if (Flags & SHOW_PREFIX)
187 show_plist("Prefix(s):\n", &plist, PLIST_CWD);
188 if (Flags & SHOW_FILES)
189 show_files("Files:\n", &plist);
190 if (!Quiet)
191 puts(InfoPrefix);

--- 21 unchanged lines hidden ---
188 if ((Flags & SHOW_MTREE) && fexists(MTREE_FNAME))
189 show_file("mtree file:\n", MTREE_FNAME);
190 if (Flags & SHOW_PREFIX)
191 show_plist("Prefix(s):\n", &plist, PLIST_CWD);
192 if (Flags & SHOW_FILES)
193 show_files("Files:\n", &plist);
194 if (!Quiet)
195 puts(InfoPrefix);

--- 21 unchanged lines hidden ---