[vlc-commits] Contribs: ignore tar unpacking errors when using	prebuilt
    Jean-Baptiste Kempf 
    git at videolan.org
       
    Wed Sep 26 17:31:34 CEST 2012
    
    
  
vlc | branch: master | Jean-Baptiste Kempf <jb at videolan.org> | Wed Sep 26 17:27:35 2012 +0200| [ab106c7730211709ba5ed72a5a77232c41f87d5f] | committer: Jean-Baptiste Kempf
Contribs: ignore tar unpacking errors when using prebuilt
Symlinks cannot work properly on Windows
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=ab106c7730211709ba5ed72a5a77232c41f87d5f
---
 contrib/src/main.mak |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/contrib/src/main.mak b/contrib/src/main.mak
index 98b9b64..966838c 100644
--- a/contrib/src/main.mak
+++ b/contrib/src/main.mak
@@ -348,7 +348,7 @@ vlc-contrib-$(HOST)-latest.tar.bz2:
 	$(call download,$(PREBUILT_URL))
 
 prebuilt: vlc-contrib-$(HOST)-latest.tar.bz2
-	$(UNPACK) && mv $(HOST) $(TOPDST)
+	$(UNPACK) || mv $(HOST) $(TOPDST)
 	cd $(TOPDST)/$(HOST) && $(SRC)/change_prefix.sh
 
 package: install
    
    
More information about the vlc-commits
mailing list