diff options
Diffstat (limited to 'meta')
-rw-r--r-- | meta/recipes-extended/net-tools/net-tools_1.60-26.bb | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/meta/recipes-extended/net-tools/net-tools_1.60-26.bb b/meta/recipes-extended/net-tools/net-tools_1.60-26.bb index 5657fd8c5b..a4e3285cdb 100644 --- a/meta/recipes-extended/net-tools/net-tools_1.60-26.bb +++ b/meta/recipes-extended/net-tools/net-tools_1.60-26.bb | |||
@@ -48,7 +48,16 @@ PARALLEL_MAKE = "" | |||
48 | # up all previously applied patches in the start | 48 | # up all previously applied patches in the start |
49 | nettools_do_patch() { | 49 | nettools_do_patch() { |
50 | cd ${S} | 50 | cd ${S} |
51 | quilt pop -a || true | 51 | # it's important that we only pop the existing patches when they've |
52 | # been applied, otherwise quilt will climb the directory tree | ||
53 | # and reverse out some completely different set of patches | ||
54 | if [ -d ${S}/patches ]; then | ||
55 | # whilst this is the default directory, doing it like this | ||
56 | # defeats the directory climbing that quilt will otherwise | ||
57 | # do; note the directory must exist to defeat this, hence | ||
58 | # the test inside which we operate | ||
59 | QUILT_PATCHES=${S}/patches quilt pop -a | ||
60 | fi | ||
52 | if [ -d ${S}/.pc-nettools ]; then | 61 | if [ -d ${S}/.pc-nettools ]; then |
53 | rm -rf ${S}/.pc | 62 | rm -rf ${S}/.pc |
54 | mv ${S}/.pc-nettools ${S}/.pc | 63 | mv ${S}/.pc-nettools ${S}/.pc |