search for: git_dir

Displaying 15 results from an estimated 15 matches for "git_dir".

Did you mean: get_dir
2017 Apr 04
2
Code inconsistency between release version and git in rsync-3.0.9
There are huge differences between source files in the version 3.0.9 released as a tar.gz and source files in git. I would assume that the released version would correspond to the version in git but with 3.0.9 it is not like that. In 3.1.0 the released and git versions are more or less the same. So my question is, from what source files was the 3.0.9 version created? Thank you. Regards, Michal
2017 Apr 04
0
Code inconsistency between release version and git in rsync-3.0.9
...the generated files proto.h, rsync.1, and rsyncd.conf.5. Here's my test steps, with the output of everything except the final diffstats omitted. $ cd /tmp $ tar xvf .../rsync-3.0.9.tar.gz $ tar xvf .../rsync-3.1.0.tar.gz $ git clone --bare git://git.samba.org/rsync.git /tmp/rsync-git-bare/ $ GIT_DIR=/tmp/rsync-git-bare git worktree add /tmp/rsync-git-3.0.9 v3.0.9 $ GIT_DIR=/tmp/rsync-git-bare git worktree add /tmp/rsync-git-3.1.0 v3.1.0 $ diff -Nuar rsync-git-3.0.9/ rsync-3.0.9/ --exclude .git --exclude-from rsync-git-3.0.9/.gitignore >rsync-git__rsync-3.0.9.diff $ diff -Nuar rsync-git-3.1....
2008 Jul 14
2
Wine 1.1.1 bz2 Slackware compiling source problem
...-1.1.1/tools' make[1]: Entering directory `/home/wine-1.1.1/libs' make[2]: Entering directory `/home/wine-1.1.1/libs/port' make[2]: Nothing to be done for `all'. make[2]: Leaving directory `/home/wine-1.1.1/libs/port' make[2]: Entering directory `/home/wine-1.1.1/libs/wine' (GIT_DIR=../../.git git describe HEAD 2>/dev/null || echo "wine-1.1.1") | sed -n -e '$s/\(.*\)/const char wine_build[] = "\1";/p' >version-stamp || (rm -f version-stamp && exit 1) make[2]: Leaving directory `/home/wine-1.1.1/libs/wine' make[2]: Entering director...
2012 Dec 05
0
[LLVMdev] [Git-fu] How to commit inter-repositories atomically to svn
...n llvm-project. $ git checkout --track origin/master * Collect your commits with squashed. $ git fetch /path/to/your/repo (.git) $ git cherry-pick --strategy subtree --no-commit FETCH_HEAD $ git commit You may do whatever you want. FYI, it could be easily to add your repositories to GIT_DIR/objects/info/alternates. [Preparations] * Checkout latest head of upstream as detached. $ git fetch origin $ git checkout origin/master * Set up svn-emulated tree. $ for x in *;do git mv $x trunk;mkdir $x;git mv trunk $x/;done Imagine, clang => cfe/trunk, llvm => llvm/trunk. $ g...
2009 Jun 11
1
Error compiling Wine on Fedora 11
...bs' make[2]: Entering directory `/home/v4mpiro/Scrivania/wine-1.1.23/libs/port' make[2]: Nothing to be done for `all'. make[2]: Leaving directory `/home/v4mpiro/Scrivania/wine-1.1.23/libs/port' make[2]: Entering directory `/home/v4mpiro/Scrivania/wine-1.1.23/libs/wine' version=`(GIT_DIR=../../.git git describe HEAD 2>/dev/null || echo "wine-1.1.23") | sed -n -e '$s/\(.*\)/const char wine_build[] = "\1";/p'` && (echo $version | cmp -s - version.c) || echo $version >version.c || (rm -f version.c && exit 1) gcc -shared -Wl,-soname,lib...
2009 Jun 04
1
FYI, new git "update" script pushed, not yet installed
...ranch=$(git config --bool hooks.allowdeletebranch) +denycreatebranch=$(git config --bool hooks.denycreatebranch) allowdeletetag=$(git config --bool hooks.allowdeletetag) +allowmodifytag=$(git config --bool hooks.allowmodifytag) # check for no description projectdesc=$(sed -e '1q' "$GIT_DIR/description") @@ -75,7 +83,8 @@ esac # --- Check types # if $newrev is 0000...0000, it's a commit to delete a ref. -if [ "$newrev" = "0000000000000000000000000000000000000000" ]; then +zero="0000000000000000000000000000000000000000" +if [ "$newrev&quot...
2011 Apr 11
0
[PATCH] Makefile: Move Makefile fragments into mk/
.../Makefile.private b/Makefile.private index c70c204..6ca0598 100644 --- a/Makefile.private +++ b/Makefile.private @@ -18,7 +18,7 @@ .PHONY: official release # These files are removed when tarballs are generated. -PRIVATE = Makefile.private MCONFIG.devel +PRIVATE = Makefile.private mk/devel.mk GIT_DIR ?= .git ABS_GIT_DIR := $(shell cd '$(GIT_DIR)' 2>/dev/null && pwd) diff --git a/com32/cmenu/Makefile b/com32/cmenu/Makefile index 794af74..446bbcd 100644 --- a/com32/cmenu/Makefile +++ b/com32/cmenu/Makefile @@ -17,11 +17,12 @@ NOGPL := 1 -# This must be defined before MCON...
2011 Apr 16
6
[PATCH 0/6] Makefile cleanups
From: Matt Fleming <matt.fleming at linux.intel.com> This series includes a patch (PATCH 1/6) that I sent previously but I thought it was worth sending it again since the rest of the series depends on it, and it also gives a bit of context. These cleanups make it simpler to do the big switchover to ELF modules on the elflink branch because the libraries in $LIBS are now contained in one
2008 Nov 19
7
Appiing patches to wine GIT
I have never applied patches to wine, so i have a question: I downloaded wine git , then copied cursor-patches-1.1.8.patch to wine source dir, then When i entered $patch -p1 < cursor-patches-1.1.8.patch #receive $Reversed (or previously applied) patch detected! Assume -R? [n] Does it miens that patch no needed? Already installed?
2009 Dec 26
3
Unable to compile wine on WinXP with Cygwin
...e[1]: Entering directory `/home/Alex/wine-git/libs' make[2]: Entering directory `/home/Alex/wine-git/libs/port' make[2]: Nothing to be done for `all'. make[2]: Leaving directory `/home/Alex/wine-git/libs/port' make[2]: Entering directory `/home/Alex/wine-git/libs/wine' version=`(GIT_DIR=../../.git git describe HEAD 2>/dev/null || echo "wine-1.1.35") | sed -n -e '$s/\(.*\)/const char wine_build[] = "\1";/p'` && (echo $version | cmp -s - version.c) || echo $version >version.c || (rm -f version.c && exit 1) make[2]: Leaving directory...
2014 Sep 05
0
Wine release 1.7.26
...for custom procedures. winmm: Avoid sending MMIOM_SEEK message in debug trace. winmm: Don't call the custom MMIOM_SEEK handler while opening. Alexandre Julliard (2): make_makefiles: Check for idl sources in parent directory to set clean flag. make_makefiles: Support the GIT_DIR environment variable. Alistair Leslie-Hughes (2): dpvoice: New stub dll. dpvoice: Register interfaces. Aric Stewart (14): dwrite: Make gdiinterop an allocated object. dwrite: Beginning implementation of IDWriteLocalFontFileLoader. dwrite: Initialize realloc'ed me...
2007 Mar 19
1
Wile: Error when executing "make" in SimplyMepis 3.4.3
...heng/Desktop/wine-0.9.28/tools' make[1]: Entering directory `/home/zheng/Desktop/wine-0.9.28/include' make[1]: Nothing to be done for `all'. make[1]: Leaving directory `/home/zheng/Desktop/wine-0.9.28/include' make[1]: Entering directory `/home/zheng/Desktop/wine-0.9.28/loader' (GIT_DIR=../.git git-describe 2>/dev/null || echo "wine-0.9.28") | sed -e 's/\(. *\)/const char wine_version[] = "\1";/' >version-stamp || (rm -f version-stamp & & exit 1) make[1]: Leaving directory `/home/zheng/Desktop/wine-0.9.28/loader' make[1]: Entering dire...
2008 Jan 30
4
btrfs and git-reflog
I was just playing with git 1.5.3.8 and btrfs 0.11, and I noticed something odd. If I prepare a very simple repository: $ mkdir foo $ cd foo $ git init Initialized empty Git repository in .git/ $ echo hi > blort $ git add . $ git commit -m create Created initial commit 4ae9415: create 1 files changed, 1 insertions(+), 0 deletions(-) create mode 100644 blort and then
2019 Jul 09
7
[PATCH 0/5] Split virt-p2v in own repository
Hi, as it was already discussed on this list, here it is my attempt in splitting virt-p2v in an own repository. Sadly there are things that must be copied from libguestfs, as it cannot be avoided. The approach taken was to run a script (will send separately) to just get the "p2v" subdirectory with its history as own repository, and then add in few followup commits all the bits needed
2010 Dec 01
3
Error While installing Wine on OSX version 10.4.1.1!!
...othing to be done for `all'. > :info:build make[1]: Nothing to be done for `all'. > :info:build make[1]: Nothing to be done for `all'. > :info:build make[1]: Nothing to be done for `all'. > :info:build make[1]: Nothing to be done for `all'. > :info:build version=`(GIT_DIR=../../.git git describe HEAD 2>/dev/null || echo "wine-1.3.8") | sed -n -e '$s/\(.*\)/const char wine_build[] = "\1";/p'` && (echo $version | cmp -s - version.c) || echo $version >version.c || (rm -f version.c && exit 1) > :info:build make[1]: No...