netfilter-devel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Philip Prindeville <philipp@redfish-solutions.com>
To: netfilter-devel@vger.kernel.org
Subject: Issues with 1.4.10 build of iptables/extensions
Date: Wed, 22 Feb 2012 15:05:59 -0700	[thread overview]
Message-ID: <4F4566C7.2030401@redfish-solutions.com> (raw)

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;


                 reply	other threads:[~2012-02-22 22:06 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=4F4566C7.2030401@redfish-solutions.com \
    --to=philipp@redfish-solutions.com \
    --cc=netfilter-devel@vger.kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).