search for: makedirs

Displaying 20 results from an estimated 49 matches for "makedirs".

Did you mean: makedir
2011 Apr 11
0
[PATCH] Makefile: Move Makefile fragments into mk/
From: Matt Fleming <matt.fleming at linux.intel.com> Move the MCONFIG files into a mk/ directory and give them more descriptive names. This is purely a cosmetic change to make the 'include' directives a bit more coherent by making it obvious exactly which MCONFIG file we're including. For example, in com32/lua/src/Makefile we exchange the line, include ../../MCONFIG for the
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
2010 May 11
1
Xen 4.0 build error
Hi,     I just downloaded Xen4.0 from:     http://www.xen.org/products/xen_source.html     Trying=0A to build:     Create xen entries under /sys/hypervisor =0A(XEN_SYS_HYPERVISOR) [Y/n/?] y     #     # configuration written to =0A.config     #     make-3.79.1-p7[3]: Leaving directory =0A`/foo/xen40/xen-4.0.0/linux-2.6-pvo=     ps.git''     make-3.79.1-p7 -C
2005 Jun 13
3
Perl installation under SuSe
Hi R-Help, I have just downloaded RSPerl_0.7-0.tar.gz under SuSe. If I type owner@linux: ~work> R CMD INSTALL -c RSPerl_0.7-0.tar.gz i get the following error message makedir: cannot create directory '/user/lib/R/library/00LOCK' : Permission denied ERROR: failed to lock directory '/usr/lib/R/library' for modifing I would really appreciate if somebody can help me
2011 Apr 29
1
[PATCH] hdt: libmenu.a no longer exists
From: Matt Fleming <matt.fleming at linux.intel.com> Don't link against libmenu.a, it no longer exists as it was removed in commit 74518b8b691c ("elflink: Make ELF the default object format"). This fixes the following build error, make[2]: *** No rule to make target `../cmenu/libmenu/libmenu.a', needed by `hdt.c32'. Stop. Signed-off-by: Matt Fleming
2012 Jun 29
1
[syslinux:elflink] elflink: fix dependency problem in cmenu/ Makefile
On Fri, 2012-06-29 at 07:42 -0700, syslinux-bot for H. Peter Anvin wrote: > elflink: fix dependency problem in cmenu/Makefile > > Instead of adding library dependencies implicitly, make them explicit > and use --as-needed to avoid bogus DT_NEEDED entries from being > generated. This is fine, but... > diff --git a/com32/cmenu/Makefile b/com32/cmenu/Makefile > index
2012 Oct 19
3
[PATCH 0/3] elflink fixes
From: Matt Fleming <matt.fleming at intel.com> The first two patches in this series are fixes for bugs reported by someone in #syslinux. The third makes dmitest.c32 actually wait for user input. If no one has any objections/concerns, I'll pull this into the official elflink branch. Matt Fleming (3): core: Print error message if we don't load ldlinux.c32 Clean up $(GPLLIB) leak
2008 Nov 13
3
Creating a file and saving in public directory
...e a text file that is saved in a /public/report directory. I''ve had a look at the ruby api but I can''t seem to get this working. The current code I have is: #report.rb class Report < ActiveRecord::Base after_save :write_file def write_file if @file_data File.makedirs("#{RAILS_ROOT}/report") File.open("#{RAILS_ROOT}/report/waiting.adc", "w") { |file| file.write("hello world") } end end end #report_controller.rb def new @report = File.new end def create if @report.save flash[:notice]='...
2017 Jun 30
4
[PATCH v2 0/4] Allow cross-building of syslinux
Hi together, this is the second version of my cross-compilation patch serie. I'm sending it in the hope to get an honest review, and possibly see the patches integrated upstream. Those patches allow to build syslinux using a toolchain different from the host one by explicitely using the host toolchain for the utilities that are required at build-time / on the build machine. I am using the
2013 Jul 31
3
Booting FreeBSD
On 01/08/2013, at 24:37, Gene Cumm <gene.cumm at gmail.com> wrote: > On Wed, Jul 31, 2013 at 7:36 AM, Daniel O'Connor <doconnor at gsoft.com.au> wrote: >> Hi, >> I am trying to create a hybrid ISO image for FreeBSD 9.2 using syslinux 6.01 and isohybrid.pl I found at http://www.overclockix.com/sources/isohybrid.pl (I know there is a C version in syslinux but I
2009 Jan 19
3
[LLVMdev] avoid creating .dir files
On Jan 19, 2009, at 1:58 PM, Chris Lattner wrote: > On Jan 19, 2009, at 10:02 AM, Mike Stump wrote: > >> There isn't a good reason to create files called .dir in the >> installation directory. This patch fixes that. > > If we don't have this line, every build with do the makedir. And? $ time mkdir -p /bin real 0m0.002s user 0m0.000s sys 0m0.002s an extra mkdir
2009 Jan 19
2
[LLVMdev] avoid creating .dir files
There isn't a good reason to create files called .dir in the installation directory. This patch fixes that. Ok? -------------- next part -------------- A non-text attachment was scrubbed... Name: clang-1.patch Type: application/octet-stream Size: 495 bytes Desc: not available URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20090119/2086e82a/attachment.obj> --------------
2009 Jan 19
0
[LLVMdev] avoid creating .dir files
On Jan 19, 2009, at 10:02 AM, Mike Stump wrote: > There isn't a good reason to create files called .dir in the > installation directory. This patch fixes that. If we don't have this line, every build with do the makedir. -Chris
2011 Apr 28
1
elflink: build failure
make[2]: *** No rule to make target `../cmenu/libmenu/libmenu.a', needed by `hdt.c32'. Stop. Sebastian
2016 Mar 05
2
build problems with 6.04-pre1
hello everybody, apologies if I'm missing something here Just tried to build 6.04-pre1 test version with: make bios installer and found some problems all (seemingly) related to inaccurate paths in various Makefiles. I enclose a complete patch at the end of this email, which details the problems I found and how they got fixed for me. As an example, this is the first error I got:
2014 Dec 17
0
[PATCH] build: sort sources to build in a more deterministic way
It has been observed that binaries contents are depending on the order of linked objects. This order is caused by GNU make's wildcard function and the position of sources on filesystem. This change tries to prevent this kind of randomness. Also consider building using -j1 flag to make it even more reproductible. Change-Id: Ie8eee7f336e6f1fa2863c4150d967afd15519f1d Bug:
2007 Dec 17
2
configure and assembler
I'm attempting to install a product and it's failing the compiler check. CentOS 5.1 + echo='/bin/echo -e' + rm -rf configure-tmp + mkdir configure-tmp + tmp_file=configure-tmp/xxx + makedirs=. + /bin/echo -e 'Checking C++ compiler... \c' Checking C++ compiler... + cat + CXX=unknown + for i in '"CC"' '"g++"' '"cc"' '"$CC"' + CC -c configure-tmp/xxx.C + for i in '"CC"' '"g++"...
2011 Apr 16
20
[PATCH 00/20] Switch to ELF modules
From: Matt Fleming <matt.fleming at linux.intel.com> This series fixes some bugs and switches the elflink branch to be entirely ELF modules. It applies on top of, http://syslinux.zytor.com/archives/2011-April/016369.html The deletions in the diff stat below are mainly from deleting com32/elflink/modules (finally!). Now there should be no duplicate code because we don't need COM32 and
2009 Sep 22
1
[PATCH] edit-livecd in python
...inally: + os.unlink(path) + + + def mount(self, base_on, cachedir = None): + """mount existing file system. + + we have to override mount b/c we are not creating an new install root + nor do we need to setup the file system, ie makedirs(/etc/, /boot, ...), + nor do we want to overwrite fstab, or create selinuxfs + + We also need to get some info about the image before we + can mount it. + + """ + + if not base_on: + raise CreatorError("No...
2015 Sep 20
1
[syslinux:master] com32/modules: Split build by architecture. Add dir.c32
On Sun, Sep 20, 2015 at 8:33 AM, syslinux-bot for Gene Cumm <gene.cumm at gmail.com> wrote: > Commit-ID: e0ac1d2fdf7d7c58457f3796a12561cce95ca29f > Gitweb: http://www.syslinux.org/commit/e0ac1d2fdf7d7c58457f3796a12561cce95ca29f > Author: Gene Cumm <gene.cumm at gmail.com> > AuthorDate: Sun, 20 Sep 2015 08:30:55 -0400 > Committer: Gene Cumm <gene.cumm at