Displaying 9 results from an estimated 9 matches for "makelevel".
Did you mean:
baselevel
2005 Aug 01
1
patching postfix with VDA
...ternatives.patch):
Patch #4 (postfix-hostname-fqdn.patch):
missing header for unified diff at line 3 of patch
Patch #5 (postfix-2.1.1-pie.patch):
Patch #6 (postfix-2.1.1-obsolete.patch):
Patch #7 (postfix-2.1.5-aliases.patch):
Executing(%build): /bin/sh -e /var/tmp/rpm-tmp.31103
make -f Makefile.in MAKELEVEL= Makefiles
--snip--
It only read until patch #7 but there's no Patch #8 on my logfile.
2010 Sep 10
0
How to call to R_KalmanLike from outside StructTS
...ike'.
StructTS.v2 <- function (x, type = c("level", "trend", "BSM"), init = NULL,
??? fixed = NULL, optim.control = NULL)
{
??? KalmanLike2 <- function(y, mod, nit = 0) {
????? KalmanLike(y = y, mod = mod, nit = as.integer(nit), fast = TRUE)$Lik
??? }
??? makeLevel <- function(x) {
??????? T <- matrix(1, 1L, 1L)
#...
#... remaining code is the same as the original code in StructTS
#...
}
With this version the previous error is avoided but it yields results different from the original version. The fitted components are similar but the parameter estimate...
2009 Nov 20
1
[PATCH libguestfs] build: correct sed transformation to work also on .git-module-status
...#39;)
+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/ .*//'
+ # $ cat .git-module-status
+ # b653eda3ac4864de205419d9f41eec267cb89eeb
+...
2009 Dec 02
1
[PATCH libguestfs] accommodate leading "+" in git submodule output
...39;)
+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/ .*//'
+ _submodule_hash = sed 's/^[ +-]//;s/ .*//'
_update_required := $(shell \...
2020 Jan 27
5
[PATCH 0/3] Fixing out-of-tree builds
Building virt-v2v out-of-tree does not work and requires several small fixes
here and there.
Tomáš Golembiovský (3):
build: perform gnulib check from source directory
build: run ocaml-link.sh from build directory
docs: don't perform lookup on absolute paths
cfg.mk | 1 +
podwrapper.pl.in | 2 ++
v2v/Makefile.am | 16 ++++++++--------
3 files changed, 11 insertions(+), 8
2015 Aug 14
2
Build R on Haiku
...:*.yuv=01;35:*.cgm=01;35:*.emf=01;35:*.ogv=01;35:*.ogx=01;35:*.aac=00;36:*.au=00;36:*.flac=00;36:*.m4a=00;36:*.mid=00;36:*.midi=00;36:*.mka=00;36:*.mp3=00;36:*.mpc=00;36:*.ogg=00;36:*.ra=00;36:*.wav=00;36:*.oga=00;36:*.opus=00;36:*.spx=00;36:*.xspf=00;36:"
export MAKEFLAGS="w"
export MAKELEVEL="5"
export MFLAGS="-w"
export OLDPWD
export
PATH=".:/boot/home/config/non-packaged/bin:/boot/home/config/bin:/boot/system/non-packaged/bin:/bin:/boot/system/apps:/boot/system/preferences"
export PWD="/Store/buildr/src/library/tools"
export R_DEFAULT_PACKAGES=...
2015 Aug 31
0
Build R on Haiku
...35:*.cgm=01;35:*.emf=01;35:*.ogv=01;35:*.ogx=01;35:*.aac=00;36:*.au=00;36:*.flac=00;36:*.m4a=00;36:*.mid=00;36:*.midi=00;36:*.mka=00;36:*.mp3=00;36:*.mpc=00;36:*.ogg=00;36:*.ra=00;36:*.wav=00;36:*.oga=00;36:*.opus=00;36:*.spx=00;36:*.xspf=00;36:"
> export MAKEFLAGS="w"
> export MAKELEVEL="5"
> export MFLAGS="-w"
> export OLDPWD
> export
> PATH=".:/boot/home/config/non-packaged/bin:/boot/home/config/bin:/boot/system/non-packaged/bin:/bin:/boot/system/apps:/boot/system/preferences"
> export PWD="/Store/buildr/src/library/tools"
&...
2009 Aug 03
1
use gnulib, and begin to pass its "make syntax-check" tests
...$ARGV' > $@-t
+ @found=0; test -s $@-t && { found=1; cat $@-t 1>&2; \
+ echo '$(ME): found trailing blank line(s)' 1>&2; }; \
+ rm -f $@-t; \
+ test $$found = 0
+
+# We don't use this feature of maint.mk.
+prev_version_file = /dev/null
+
+ifeq (0,$(MAKELEVEL))
+ _curr_status = .git-module-status
+ # The sed filter accommodates those who check out on a commit from which
+ # no tag is reachable. In that case, git submodule status prints a "-"
+ # in column 1 and does not print a "git describe"-style string after the
+ # submodul...
2005 May 19
3
[LLVMdev] [Cygwin] llvm 'make install' build errors
Reid,
I think it is the first time it is run that the errors occcur !?
Not sure but that would seem logical.
Aaron