search for: 8811d0d

Displaying 2 results from an estimated 2 matches for "8811d0d".

2009 Nov 20
1
[PATCH libguestfs] build: correct sed transformation to work also on .git-module-status
...us=.git-module-status -t=$(git submodule status|sed 's/.//;s/ .*//') +t=$(git submodule status|sed 's/^[ -]//;s/ .*//') if test "$t" = "$(cat $curr_status 2>/dev/null)"; then : # good, it's up to date else diff --git a/cfg.mk b/cfg.mk index 0c19cc9..8811d0d 100644 --- a/cfg.mk +++ b/cfg.mk @@ -132,7 +132,9 @@ ifeq (0,$(MAKELEVEL)) # submodule name. Contrast these: # -b653eda3ac4864de205419d9f41eec267cb89eeb .gnulib # b653eda3ac4864de205419d9f41eec267cb89eeb .gnulib (v0.0-2286-gb653eda) - _submodule_hash = sed 's/.//;s/ .*//' + # $...
2009 Dec 02
1
[PATCH libguestfs] accommodate leading "+" in git submodule output
...status=.git-module-status -t=$(git submodule status|sed 's/^[ -]//;s/ .*//') +t=$(git submodule status|sed 's/^[ +-]//;s/ .*//') if test "$t" = "$(cat $curr_status 2>/dev/null)"; then : # good, it's up to date else diff --git a/cfg.mk b/cfg.mk index 8811d0d..d45ec88 100644 --- a/cfg.mk +++ b/cfg.mk @@ -134,7 +134,7 @@ ifeq (0,$(MAKELEVEL)) # b653eda3ac4864de205419d9f41eec267cb89eeb .gnulib (v0.0-2286-gb653eda) # $ cat .git-module-status # b653eda3ac4864de205419d9f41eec267cb89eeb - _submodule_hash = sed 's/^[ -]//;s/ .*//' + _submod...