diff options
author | Felix Fietkau <nbd@openwrt.org> | 2014-11-30 20:12:07 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2014-11-30 20:12:07 +0000 |
commit | 2311cfeed4cf7b66f7360993017d9e4a920f6559 (patch) | |
tree | e63e90abd90306d90132229495298550f785cb63 /tools/gengetopt/patches | |
parent | 47f09fd3456ae3e03ee667ce231d90e350443e57 (diff) | |
download | upstream-2311cfeed4cf7b66f7360993017d9e4a920f6559.tar.gz upstream-2311cfeed4cf7b66f7360993017d9e4a920f6559.tar.bz2 upstream-2311cfeed4cf7b66f7360993017d9e4a920f6559.zip |
gengetopt: fix parallel build issues (#18442)
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
SVN-Revision: 43440
Diffstat (limited to 'tools/gengetopt/patches')
-rw-r--r-- | tools/gengetopt/patches/100-dependency_fix.patch | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/tools/gengetopt/patches/100-dependency_fix.patch b/tools/gengetopt/patches/100-dependency_fix.patch new file mode 100644 index 0000000000..69cb598b7d --- /dev/null +++ b/tools/gengetopt/patches/100-dependency_fix.patch @@ -0,0 +1,11 @@ +--- a/src/Makefile.am ++++ b/src/Makefile.am +@@ -51,7 +51,7 @@ libgengetopt_la_LIBADD = $(top_builddir) + @LTLIBOBJS@ \ + skels/libgen.la + +-LDADD = $(top_builddir)/src/libgengetopt.la ++LDADD = libgengetopt.la + + EXTRA_DIST = parser.h argsdef.h gengetopt.h ggos.h gm.h gnugetopt.h \ + cmdline.c cmdline.h \ |