search for: odir

Displaying 4 results from an estimated 4 matches for "odir".

Did you mean: dir
2013 Jan 30
0
[PATCH] build: Fix haskell dependencies and parallel build
...lel make problem by putting object files in separate +# directories per target. -Guestfs030Config: $(srcdir)/Guestfs030Config.hs Guestfs.o - $(GHC) $(GHCFLAGS) -main-is $(shell basename $@) --make -o $@ $< -lguestfs +$(built_tests): %: %.hs Guestfs.hs + $(GHC) $(GHCFLAGS) --make -main-is $@ -odir .$@ -o $@ $< Guestfs.hs -lguestfs -Guestfs050LVCreate: $(srcdir)/Guestfs050LVCreate.hs Guestfs.o - $(GHC) $(GHCFLAGS) -main-is $(shell basename $@) --make -o $@ $< -lguestfs -CLEANFILES = $(all_targets) *~ *.hi *.o +CLEANFILES = $(all_targets) *~ *.hi *.o test.img -endif +clean-local:...
1999 Dec 13
1
Problems with "help(topic,offline=T)"
Hello everybody, since I installed R-0.90.0 (Linux 2.0.25) I have problems with generating printable output with 'help()'. Default output to the terminal ('echo $PAGER' gives 'less') works o.k.. When invoking 'help(topic,offline=T)' all the usual procedures seem to start: 'top' reports invocation of latex as well as of dvips. But after finishing there is
2013 Apr 24
12
[PATCH 00/12] Various patches for fixing separated builds.
This just fixes 'make'. 'make check' is still broken. Further patches for that to follow tomorrow. Rich.
2016 Aug 25
2
[PATCH] build: Add common CLEANFILES and DISTCLEANFILES to common-rules.mk.
...it a/haskell/Makefile.am b/haskell/Makefile.am index 64f54bf..b09b06b 100644 --- a/haskell/Makefile.am +++ b/haskell/Makefile.am @@ -87,7 +87,7 @@ built_tests = Bindtests Guestfs010Load Guestfs030Config Guestfs050LVCreate $(built_tests): %: %.hs Guestfs.hs $(GHC) $(GHCFLAGS) --make -main-is $@ -odir .$@ -o $@ $< $(srcdir)/Guestfs.hs -lguestfs -CLEANFILES = $(all_targets) *~ *.hi *.o test-lv-create.img +CLEANFILES += $(all_targets) *.hi test-lv-create.img clean-local: -rm -rf $(built_tests:%=.%) diff --git a/inspector/Makefile.am b/inspector/Makefile.am index af596bf..00ca5d5 100644 -...