* [PATCH] igmpproxy: fix build fail and move binary to /usr/sbin
@ 2016-06-01 5:33 Marcel Lorenz
2016-06-01 20:55 ` Michael Tremer
0 siblings, 1 reply; 3+ messages in thread
From: Marcel Lorenz @ 2016-06-01 5:33 UTC (permalink / raw)
To: development
[-- Attachment #1: Type: text/plain, Size: 1648 bytes --]
Signed-off-by: Marcel Lorenz <marcel.lorenz(a)ipfire.org>
---
config/rootfiles/packages/igmpproxy | 2 +-
lfs/igmpproxy | 3 ++-
2 files changed, 3 insertions(+), 2 deletions(-)
diff --git a/config/rootfiles/packages/igmpproxy b/config/rootfiles/packages/igmpproxy
index 1b34521..dda6dce 100644
--- a/config/rootfiles/packages/igmpproxy
+++ b/config/rootfiles/packages/igmpproxy
@@ -1,5 +1,5 @@
etc/igmpproxy.conf
-usr/local/sbin/igmpproxy
#usr/local/share/man/man5/igmpproxy.conf.5
#usr/local/share/man/man8/igmpproxy.8
+usr/sbin/igmpproxy
var/ipfire/backup/addons/includes/igmpproxy
diff --git a/lfs/igmpproxy b/lfs/igmpproxy
index fb1426f..256022c 100644
--- a/lfs/igmpproxy
+++ b/lfs/igmpproxy
@@ -82,11 +82,12 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/igmpproxy-003-Restrict-igmp-reports-for-downstream-interfaces-wrt-.patch
cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/igmpproxy-004-Restrict-igmp-reports-forwarding-to-upstream-interfa.patch
cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/igmpproxy-100-use-monotic-clock-instead-of-time-of-day.patch
- cd $(DIR_APP) && autoreconf
+ cd $(DIR_APP) && aclocal && automake --add-missing && autoreconf
cd $(DIR_APP) && ./configure --sysconfdir=/etc
cd $(DIR_APP) && make $(MAKETUNING)
cd $(DIR_APP) && make install
install -v -m 644 $(DIR_SRC)/config/backup/includes/igmpproxy \
/var/ipfire/backup/addons/includes/igmpproxy
+ mv -vf /usr/local/sbin/igmpproxy /usr/sbin/
@rm -rf $(DIR_APP)
@$(POSTBUILD)
--
1.9.1
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] igmpproxy: fix build fail and move binary to /usr/sbin
2016-06-01 5:33 [PATCH] igmpproxy: fix build fail and move binary to /usr/sbin Marcel Lorenz
@ 2016-06-01 20:55 ` Michael Tremer
2016-06-02 8:08 ` Marcel Lorenz
0 siblings, 1 reply; 3+ messages in thread
From: Michael Tremer @ 2016-06-01 20:55 UTC (permalink / raw)
To: development
[-- Attachment #1: Type: text/plain, Size: 2002 bytes --]
Hi,
does the configure script not support --prefix=/usr here?
This would make moving the binary unnecessary and is a cleaner approach.
Best,
-Michael
On Wed, 2016-06-01 at 07:33 +0200, Marcel Lorenz wrote:
> Signed-off-by: Marcel Lorenz <marcel.lorenz(a)ipfire.org>
> ---
> config/rootfiles/packages/igmpproxy | 2 +-
> lfs/igmpproxy | 3 ++-
> 2 files changed, 3 insertions(+), 2 deletions(-)
>
> diff --git a/config/rootfiles/packages/igmpproxy
> b/config/rootfiles/packages/igmpproxy
> index 1b34521..dda6dce 100644
> --- a/config/rootfiles/packages/igmpproxy
> +++ b/config/rootfiles/packages/igmpproxy
> @@ -1,5 +1,5 @@
> etc/igmpproxy.conf
> -usr/local/sbin/igmpproxy
> #usr/local/share/man/man5/igmpproxy.conf.5
> #usr/local/share/man/man8/igmpproxy.8
> +usr/sbin/igmpproxy
> var/ipfire/backup/addons/includes/igmpproxy
> diff --git a/lfs/igmpproxy b/lfs/igmpproxy
> index fb1426f..256022c 100644
> --- a/lfs/igmpproxy
> +++ b/lfs/igmpproxy
> @@ -82,11 +82,12 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
> cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/igmpproxy-003-
> Restrict-igmp-reports-for-downstream-interfaces-wrt-.patch
> cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/igmpproxy-004-
> Restrict-igmp-reports-forwarding-to-upstream-interfa.patch
> cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/igmpproxy-100-
> use-monotic-clock-instead-of-time-of-day.patch
> - cd $(DIR_APP) && autoreconf
> + cd $(DIR_APP) && aclocal && automake --add-missing && autoreconf
> cd $(DIR_APP) && ./configure --sysconfdir=/etc
> cd $(DIR_APP) && make $(MAKETUNING)
> cd $(DIR_APP) && make install
> install -v -m 644 $(DIR_SRC)/config/backup/includes/igmpproxy \
> /var/ipfire/backup/addons/includes/igmpproxy
> + mv -vf /usr/local/sbin/igmpproxy /usr/sbin/
> @rm -rf $(DIR_APP)
> @$(POSTBUILD)
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 819 bytes --]
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] igmpproxy: fix build fail and move binary to /usr/sbin
2016-06-01 20:55 ` Michael Tremer
@ 2016-06-02 8:08 ` Marcel Lorenz
0 siblings, 0 replies; 3+ messages in thread
From: Marcel Lorenz @ 2016-06-02 8:08 UTC (permalink / raw)
To: development
[-- Attachment #1: Type: text/plain, Size: 2194 bytes --]
Oh,
ok i make new...
it's working with --prefix=/usr
Best,
Marcel
Am 2016-06-01 22:55, schrieb Michael Tremer:
> Hi,
>
> does the configure script not support --prefix=/usr here?
>
> This would make moving the binary unnecessary and is a cleaner
> approach.
>
> Best,
> -Michael
>
> On Wed, 2016-06-01 at 07:33 +0200, Marcel Lorenz wrote:
>> Signed-off-by: Marcel Lorenz <marcel.lorenz(a)ipfire.org>
>> ---
>> config/rootfiles/packages/igmpproxy | 2 +-
>> lfs/igmpproxy | 3 ++-
>> 2 files changed, 3 insertions(+), 2 deletions(-)
>>
>> diff --git a/config/rootfiles/packages/igmpproxy
>> b/config/rootfiles/packages/igmpproxy
>> index 1b34521..dda6dce 100644
>> --- a/config/rootfiles/packages/igmpproxy
>> +++ b/config/rootfiles/packages/igmpproxy
>> @@ -1,5 +1,5 @@
>> etc/igmpproxy.conf
>> -usr/local/sbin/igmpproxy
>> #usr/local/share/man/man5/igmpproxy.conf.5
>> #usr/local/share/man/man8/igmpproxy.8
>> +usr/sbin/igmpproxy
>> var/ipfire/backup/addons/includes/igmpproxy
>> diff --git a/lfs/igmpproxy b/lfs/igmpproxy
>> index fb1426f..256022c 100644
>> --- a/lfs/igmpproxy
>> +++ b/lfs/igmpproxy
>> @@ -82,11 +82,12 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
>> cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/igmpproxy-003-
>> Restrict-igmp-reports-for-downstream-interfaces-wrt-.patch
>> cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/igmpproxy-004-
>> Restrict-igmp-reports-forwarding-to-upstream-interfa.patch
>> cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/igmpproxy-100-
>> use-monotic-clock-instead-of-time-of-day.patch
>> - cd $(DIR_APP) && autoreconf
>> + cd $(DIR_APP) && aclocal && automake --add-missing && autoreconf
>> cd $(DIR_APP) && ./configure --sysconfdir=/etc
>> cd $(DIR_APP) && make $(MAKETUNING)
>> cd $(DIR_APP) && make install
>> install -v -m 644 $(DIR_SRC)/config/backup/includes/igmpproxy \
>> /var/ipfire/backup/addons/includes/igmpproxy
>> + mv -vf /usr/local/sbin/igmpproxy /usr/sbin/
>> @rm -rf $(DIR_APP)
>> @$(POSTBUILD)
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2016-06-02 8:08 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-06-01 5:33 [PATCH] igmpproxy: fix build fail and move binary to /usr/sbin Marcel Lorenz
2016-06-01 20:55 ` Michael Tremer
2016-06-02 8:08 ` Marcel Lorenz
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox