diff options
author | Patrick McDermott <patrick.mcdermott@libiquity.com> | 2019-03-17 04:11:59 (EDT) |
---|---|---|
committer | Patrick McDermott <patrick.mcdermott@libiquity.com> | 2019-03-17 04:11:59 (EDT) |
commit | 739da01da1b15e3a1011ccbeb0e7fb4dde7303ee (patch) | |
tree | f696587ffed2eb0034539269b13a80f1d6905b06 | |
parent | 9bc412a61611c69c971f9853ee9b85e971014fea (diff) |
opkbuild, ob-*: Drop call to main()
shld already calls main(), so this extra call causes main() to run a
second time if it returns the first time.
-rw-r--r-- | src/ob-applypatches.sh | 2 | ||||
-rw-r--r-- | src/ob-buildenv.sh | 2 | ||||
-rw-r--r-- | src/ob-buildopk.sh | 2 | ||||
-rw-r--r-- | src/ob-checkbuilddeps.sh | 2 | ||||
-rw-r--r-- | src/ob-genchanges.sh | 2 | ||||
-rw-r--r-- | src/ob-gencontrol.sh | 2 | ||||
-rw-r--r-- | src/ob-installdocs.sh | 2 | ||||
-rw-r--r-- | src/ob-installplatconf.sh | 2 | ||||
-rw-r--r-- | src/ob-unpacksource.sh | 2 | ||||
-rw-r--r-- | src/opkbuild.sh | 2 |
10 files changed, 0 insertions, 20 deletions
diff --git a/src/ob-applypatches.sh b/src/ob-applypatches.sh index bd2a145..c70d912 100644 --- a/src/ob-applypatches.sh +++ b/src/ob-applypatches.sh @@ -67,5 +67,3 @@ main() return 0 } - -main "${@}" diff --git a/src/ob-buildenv.sh b/src/ob-buildenv.sh index b0ef5bb..dd392a9 100644 --- a/src/ob-buildenv.sh +++ b/src/ob-buildenv.sh @@ -101,5 +101,3 @@ main() return 0 } - -main "${@}" diff --git a/src/ob-buildopk.sh b/src/ob-buildopk.sh index 9bba30c..7f117ea 100644 --- a/src/ob-buildopk.sh +++ b/src/ob-buildopk.sh @@ -64,5 +64,3 @@ main() return 0 } - -main "${@}" diff --git a/src/ob-checkbuilddeps.sh b/src/ob-checkbuilddeps.sh index b5acd85..832926a 100644 --- a/src/ob-checkbuilddeps.sh +++ b/src/ob-checkbuilddeps.sh @@ -96,5 +96,3 @@ main() return 0 } - -main "${@}" diff --git a/src/ob-genchanges.sh b/src/ob-genchanges.sh index 41ebaa9..722d009 100644 --- a/src/ob-genchanges.sh +++ b/src/ob-genchanges.sh @@ -115,5 +115,3 @@ main() return 0 } - -main "${@}" diff --git a/src/ob-gencontrol.sh b/src/ob-gencontrol.sh index 36f1980..2bb0d9b 100644 --- a/src/ob-gencontrol.sh +++ b/src/ob-gencontrol.sh @@ -197,5 +197,3 @@ main() return 0 } - -main "${@}" diff --git a/src/ob-installdocs.sh b/src/ob-installdocs.sh index 999aeee..475fbff 100644 --- a/src/ob-installdocs.sh +++ b/src/ob-installdocs.sh @@ -112,5 +112,3 @@ main() return 0 } - -main "${@}" diff --git a/src/ob-installplatconf.sh b/src/ob-installplatconf.sh index 74293df..901a7cd 100644 --- a/src/ob-installplatconf.sh +++ b/src/ob-installplatconf.sh @@ -101,5 +101,3 @@ main() return 0 } - -main "${@}" diff --git a/src/ob-unpacksource.sh b/src/ob-unpacksource.sh index 47362dd..780d2ac 100644 --- a/src/ob-unpacksource.sh +++ b/src/ob-unpacksource.sh @@ -155,5 +155,3 @@ main() return 0 } - -main "${@}" diff --git a/src/opkbuild.sh b/src/opkbuild.sh index 43e338d..71a898b 100644 --- a/src/opkbuild.sh +++ b/src/opkbuild.sh @@ -414,5 +414,3 @@ main() return 0 } - -main "${@}" |