netfilter-devel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* Issues with 1.4.10 build of iptables/extensions
@ 2012-02-22 22:05 Philip Prindeville
  0 siblings, 0 replies; only message in thread
From: Philip Prindeville @ 2012-02-22 22:05 UTC (permalink / raw)
  To: netfilter-devel

Seeing the following:

make[5]: Entering directory `/home/philipp/openwrt-alix/build_dir/linux-x86_alix2/iptables-1.4.10/extensions'
if test -n "   "; then install -pm0755  "/home/philipp/openwrt-alix/build_dir/linux-x86_alix2/iptables-1.4.10/ipkg-install/usr/lib/iptables/"; fi;
install: missing destination file operand after `/home/philipp/openwrt-alix/build_dir/linux-x86_alix2/iptables-1.4.10/ipkg-install/usr/lib/iptables/'
Try `install --help' for more information.
make[5]: *** [install] Error 1

The problem is here:

targets_install += ${pfx_solibs} ${pf4_solibs} ${pf6_solibs}
...
install: ${targets_install}
        @mkdir -p "${DESTDIR}${xtlibdir}";
        if test -n "${targets_install}"; then install -pm0755 $^ "${DESTDIR}${xtlibdir}/"; fi;

that should read:

install: ${targets_install}
        @mkdir -p "${DESTDIR}${xtlibdir}";
        if test -n "$(strip ${targets_install})"; then install -pm0755 $^ "${DESTDIR}${xtlibdir}/"; fi;


^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2012-02-22 22:06 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-02-22 22:05 Issues with 1.4.10 build of iptables/extensions Philip Prindeville

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).