diff options
author | Isaac Dunham <ibid.ag@gmail.com> | 2014-09-19 14:44:42 -0700 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2014-09-24 14:53:32 +0000 |
commit | 2e844011a12c1fdbc75789288c842c2dba8ed20b (patch) | |
tree | b76c7432f33545ffff5ebfb57571d33d509828ec /unmaintained/ifupdown/ifupdown-busybox-compat.patch | |
parent | c53bd124b269d71b290459ba629f9eb6454a5521 (diff) | |
download | aports-2e844011a12c1fdbc75789288c842c2dba8ed20b.tar.bz2 aports-2e844011a12c1fdbc75789288c842c2dba8ed20b.tar.xz |
testing/ifupdown: update to 0.7.48.1
* fix url
* update patches
* move from unmaintained to testing
Diffstat (limited to 'unmaintained/ifupdown/ifupdown-busybox-compat.patch')
-rw-r--r-- | unmaintained/ifupdown/ifupdown-busybox-compat.patch | 38 |
1 files changed, 0 insertions, 38 deletions
diff --git a/unmaintained/ifupdown/ifupdown-busybox-compat.patch b/unmaintained/ifupdown/ifupdown-busybox-compat.patch deleted file mode 100644 index 10d4ceeaab..0000000000 --- a/unmaintained/ifupdown/ifupdown-busybox-compat.patch +++ /dev/null @@ -1,38 +0,0 @@ ---- ifupdown-0.6.10.orig/main.c -+++ ifupdown-0.6.10/main.c -@@ -61,7 +61,7 @@ - printf("\t\t\t\t(note that this option doesn't disable mappings)\n"); - printf("\t-v, --verbose\t\tprint out what would happen before doing it\n"); - printf("\t--no-mappings\t\tdon't run any mappings\n"); -- printf("\t--force\t\t\tforce de/configuration\n"); -+ printf("\t-f, --force\t\t\tforce de/configuration\n"); - exit(0); - } - #line 3573 "ifupdown.nw" -@@ -345,7 +345,7 @@ - {"exclude", required_argument, NULL, 'e'}, - {"no-act", no_argument, NULL, 'n'}, - {"no-mappings", no_argument, NULL, 1 }, -- {"force", no_argument, NULL, 2 }, -+ {"force", no_argument, NULL, 'f'}, - {0,0,0,0} - }; - #line 3173 "ifupdown.nw" -@@ -415,7 +415,7 @@ - #line 3235 "ifupdown.nw" - for(;;) { - int c; -- c = getopt_long(argc, argv, "e:s:i:hVvna", long_opts, NULL); -+ c = getopt_long(argc, argv, "e:s:i:hVvnaf", long_opts, NULL); - if (c == EOF) break; - - switch(c) { -@@ -445,7 +445,7 @@ - run_mappings = 0; - break; - #line 3283 "ifupdown.nw" --case 2: -+case 'f': - force = 1; - break; - #line 3288 "ifupdown.nw" |