pkgtools

morpheus pkg tools
git clone git://git.2f30.org/pkgtools
Log | Files | Refs | README | LICENSE

commit 70a796d4c53a18cc8d28ee11f0c5baeca6de6cb2
parent c1b648e550aca8b21ca7986df60c879b42bb0ae2
Author: sin <sin@2f30.org>
Date:   Mon,  9 Jun 2014 11:56:19 +0100

Add warning about removepkg -f

It will remove all empty dirs even if other packages have explicitly
created those directories.

Diffstat:
Mremovepkg.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/removepkg.c b/removepkg.c @@ -25,7 +25,7 @@ usage(void) { fprintf(stderr, "usage: %s [-v] [-f] [-p prefix] pkg...\n", argv0); fprintf(stderr, " -v Enable verbose output\n"); - fprintf(stderr, " -f Force the removal of empty directories and symlinks\n"); + fprintf(stderr, " -f Force the removal of empty directories and symlinks (DANGEROUS)\n"); fprintf(stderr, " -p Set the installation prefix\n"); exit(EXIT_FAILURE); }