* [Buildroot] [git commit] libfuse: fix download URL
@ 2012-03-15 8:12 Peter Korsgaard
2012-03-15 22:50 ` Arnout Vandecappelle
0 siblings, 1 reply; 4+ messages in thread
From: Peter Korsgaard @ 2012-03-15 8:12 UTC (permalink / raw)
To: buildroot
commit: http://git.buildroot.net/buildroot/commit/?id=8d3c0bcfebb7110e28aa7633ed712461b6430bb5
branch: http://git.buildroot.net/buildroot/commit/?id=refs/heads/master
The old URL nowadays return a 404.
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
---
package/libfuse/libfuse.mk | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/package/libfuse/libfuse.mk b/package/libfuse/libfuse.mk
index 3616c65..15c63ab 100644
--- a/package/libfuse/libfuse.mk
+++ b/package/libfuse/libfuse.mk
@@ -6,7 +6,7 @@
LIBFUSE_VERSION = 2.8.7
LIBFUSE_SOURCE = fuse-$(LIBFUSE_VERSION).tar.gz
-LIBFUSE_SITE = http://$(BR2_SOURCEFORGE_MIRROR).dl.sourceforge.net/sourceforge/fuse/
+LIBFUSE_SITE = http://$(BR2_SOURCEFORGE_MIRROR).dl.sourceforge.net/project/fuse/fuse-2.X/$(LIBFUSE_VERSION)
LIBFUSE_INSTALL_STAGING = YES
LIBFUSE_CONF_OPT= --disable-nls \
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [Buildroot] [git commit] libfuse: fix download URL
2012-03-15 8:12 [Buildroot] [git commit] libfuse: fix download URL Peter Korsgaard
@ 2012-03-15 22:50 ` Arnout Vandecappelle
2012-03-15 23:01 ` Peter Korsgaard
2012-03-15 23:07 ` Arnout Vandecappelle
0 siblings, 2 replies; 4+ messages in thread
From: Arnout Vandecappelle @ 2012-03-15 22:50 UTC (permalink / raw)
To: buildroot
On Thursday 15 March 2012 09:12:47 Peter Korsgaard wrote:
> -LIBFUSE_SITE = http://$(BR2_SOURCEFORGE_MIRROR).dl.sourceforge.net/sourceforge/fuse/
> +LIBFUSE_SITE = http://$(BR2_SOURCEFORGE_MIRROR).dl.sourceforge.net/project/fuse/fuse-2.X/$(LIBFUSE_VERSION)
$ git grep -l dl.sourceforge.net/sourceforge | wc -l
71
Oops, looks like we have a bit of work here...
Regards,
Arnout
--
Arnout Vandecappelle arnout at mind be
Senior Embedded Software Architect +32-16-286540
Essensium/Mind http://www.mind.be
G.Geenslaan 9, 3001 Leuven, Belgium BE 872 984 063 RPR Leuven
LinkedIn profile: http://www.linkedin.com/in/arnoutvandecappelle
GPG fingerprint: 7CB5 E4CC 6C2E EFD4 6E3D A754 F963 ECAB 2450 2F1F
^ permalink raw reply [flat|nested] 4+ messages in thread
* [Buildroot] [git commit] libfuse: fix download URL
2012-03-15 22:50 ` Arnout Vandecappelle
@ 2012-03-15 23:01 ` Peter Korsgaard
2012-03-15 23:07 ` Arnout Vandecappelle
1 sibling, 0 replies; 4+ messages in thread
From: Peter Korsgaard @ 2012-03-15 23:01 UTC (permalink / raw)
To: buildroot
>>>>> "Arnout" == Arnout Vandecappelle <arnout@mind.be> writes:
Arnout> On Thursday 15 March 2012 09:12:47 Peter Korsgaard wrote:
>> -LIBFUSE_SITE = http://$(BR2_SOURCEFORGE_MIRROR).dl.sourceforge.net/sourceforge/fuse/
>> +LIBFUSE_SITE = http://$(BR2_SOURCEFORGE_MIRROR).dl.sourceforge.net/project/fuse/fuse-2.X/$(LIBFUSE_VERSION)
Arnout> $ git grep -l dl.sourceforge.net/sourceforge | wc -l
Arnout> 71
Arnout> Oops, looks like we have a bit of work here...
Indeed. I haven't noticed any official notice from sf.net that they have
changed the URLs on purpose (and that it will be permanent) though.
--
Bye, Peter Korsgaard
^ permalink raw reply [flat|nested] 4+ messages in thread
* [Buildroot] [git commit] libfuse: fix download URL
2012-03-15 22:50 ` Arnout Vandecappelle
2012-03-15 23:01 ` Peter Korsgaard
@ 2012-03-15 23:07 ` Arnout Vandecappelle
1 sibling, 0 replies; 4+ messages in thread
From: Arnout Vandecappelle @ 2012-03-15 23:07 UTC (permalink / raw)
To: buildroot
On Thursday 15 March 2012 23:50:18 Arnout Vandecappelle wrote:
> On Thursday 15 March 2012 09:12:47 Peter Korsgaard wrote:
> > -LIBFUSE_SITE = http://$(BR2_SOURCEFORGE_MIRROR).dl.sourceforge.net/sourceforge/fuse/
> > +LIBFUSE_SITE = http://$(BR2_SOURCEFORGE_MIRROR).dl.sourceforge.net/project/fuse/fuse-2.X/$(LIBFUSE_VERSION)
>
> $ git grep -l dl.sourceforge.net/sourceforge | wc -l
> 71
>
> Oops, looks like we have a bit of work here...
Actually, most of these can simply be removed. Sourceforge is the
default in Makefile.package.in. It just needs to be updated there.
Regards,
Arnout
--
Arnout Vandecappelle arnout at mind be
Senior Embedded Software Architect +32-16-286540
Essensium/Mind http://www.mind.be
G.Geenslaan 9, 3001 Leuven, Belgium BE 872 984 063 RPR Leuven
LinkedIn profile: http://www.linkedin.com/in/arnoutvandecappelle
GPG fingerprint: 7CB5 E4CC 6C2E EFD4 6E3D A754 F963 ECAB 2450 2F1F
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2012-03-15 23:07 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-03-15 8:12 [Buildroot] [git commit] libfuse: fix download URL Peter Korsgaard
2012-03-15 22:50 ` Arnout Vandecappelle
2012-03-15 23:01 ` Peter Korsgaard
2012-03-15 23:07 ` Arnout Vandecappelle
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox