summaryrefslogtreecommitdiff
path: root/.gitignore
AgeCommit message (Collapse)AuthorFilesLines
2013-08-29make the tinderbox information more reliable in the about dialog (fdo#58034)Petr Mladek1-0/+1
Pass the information via config/config_buildid.h. Then cui/source/dialogs/about.cxx will get rebuilt also in the incremental build. Also allow to set EXTRA_BUILDID also via environment variable. This is much easier with tinderboxed that work with static autogen.input. Change-Id: Ic0b0d13f031c988c096bfd4533e650e245a0ad74 Reviewed-on: https://gerrit.libreoffice.org/5680 Reviewed-by: Luboš Luňák <l.lunak@suse.cz> Tested-by: Luboš Luňák <l.lunak@suse.cz>
2013-04-02.gitignore config/config_version.h (generated)Stephan Bergmann1-0/+1
2012-11-27move ooo.lst and download parts to Makefile.fetchMatúš Kukan1-1/+0
Change-Id: I2d27341566d383002446c23bdf60c7aa0cabf37d
2012-11-20repo-list is gone since 664012b313f3c3cd5666fc6f943fc8152e503e23Matúš Kukan1-1/+0
Change-Id: I2178f60a75a0436c66f825fe001e23f6aefb0e97
2012-11-11Kill set_oenv remnants (by just renaming the required timestamp file)Matteo Casalin1-1/+1
Change-Id: I779128111a4f69235a4c8cc6510018fc61d1b24b Reviewed-on: https://gerrit.libreoffice.org/1026 Tested-by: Tor Lillqvist <tml@iki.fi> Reviewed-by: Tor Lillqvist <tml@iki.fi>
2012-11-05Revert "Add the concat-deps executable"Tor Lillqvist1-3/+0
It is already elsewhere, I was mislead by a leftover old one. This reverts commit 75f7241fb74fed8d523cbdc3f0629611bd5f61e1.
2012-11-05Add the concat-deps executableTor Lillqvist1-0/+3
Change-Id: Ic782353cbe77c2d30e8afac4807fe2c6fd882733
2012-11-05No need to mention "/solver", I thinkTor Lillqvist1-1/+0
We already mention /*/unxlng???, /*/unxlng???.pro etc which should cover the normal $OUTDIR. We do now have one git-managed file in solver, README. Not mentioning /solver means git status will notice other files or subdirectories accidentally or misguidedly added in solver. Change-Id: Ie70b9ff32ac9c7282cef8d28ff04f3a22e4a78f6
2012-11-03bin pointless post_download.inMatúš Kukan1-2/+0
Getting dbghelp.dll with help of dbg_x86.msi was removed. It was most probably obsolete. Change-Id: Iab4c63b2ad883e3d1db3df965eecf15dccb478eb
2012-11-03compile concat-deps in solenv; also put them into $(OUTDIR)Matúš Kukan1-4/+0
Change-Id: I4ef21f14a77442b60059c649b83435c775670060
2012-10-22No more clone directoryStephan Bergmann1-2/+1
Change-Id: I59239bfa1865bc5f19e620216edd95227c5fb318
2012-10-16submodules migrationNorbert Thiebaud1-6/+0
Change-Id: Ib3e472a4b1abf880f695be7a6667393d6a82f10d
2012-08-29.gitignore config.Build.logStephan Bergmann1-0/+1
Change-Id: I48bdd2045a9b85153a9d39ee667c9083ab6a5a61
2012-08-24gbuildize extrasDavid Tardon1-1/+0
Change-Id: I190b1314a91026dcfc39df3e3e178df55d14d90a
2012-07-17tubes: Give a useful error when test-config.ini is missing.Will Thompson1-0/+3
2012-07-16do not hide .patch filesMatúš Kukan1-3/+0
to hide more, try git config --global core.excludesfile Change-Id: I1da4131b943a962797a1f389554139e87fe074bc
2012-07-12Added dumping [property] FillTransparence and ignoring .patch filesArtur Dorda1-0/+3
Change-Id: I676a811a618b381f4a99010e40fdf1627cea7067
2012-03-16add autogen.lastrun.bak to .gitignoreLuboš Luňák1-0/+1
2012-02-18do not hide patch-related file (.orig .rej)Norbert Thiebaud1-5/+0
If you want to hide them, add the rule in you local git set-up. see git config --global core.excludesfiles fo more info
2012-02-05coup de grace for Env.Host.sh and associated filesNorbert Thiebaud1-4/+1
2011-12-24prep work to eliminated Env.*.sh, introduce config_{host,build}.mkNorbert Thiebaud1-0/+2
This introduce config_host.mk and config_build.mk generated from config_host.mk.in The intent is for that file to be both sourcable in a shell and includable in a gnu Makefile. Eventually all the environment set-up will be in config_host.mk.in and so there won't be a need to source anything in shell before make.
2011-12-20ignore concat-deps on cygwinPeter Foley1-0/+1
2011-12-20ignore merge modulesPeter Foley1-0/+1
2011-12-19.gitignore: better VIM swp patternMichael Stahl1-1/+4
2011-12-17use a c-version of concat-deps.plNorbert Thiebaud1-0/+3
This touch configure.in with a trivial space removal to force a ./bootstrap on the tinderboxes This make ./bootstrap build a 'build-side' executable concat-deps and modify LinkTarget.mk to use it instead of concat-deps.pl The impact is a conservative x10 times improvement in both elapsed and cpu time in overhead due to DEP generations. time make -sr build in tail_build after removing workdir/$INPATH/Dep/LinkTarget/Library/* (all on Intel X3360, 2.83GHz, 4-core) before: elapsed: 116.5 cpu: 115.9 after elapsed: 24.3 cpu: 23.9 base (no dep processing, i.e no rm of Dep/...) elapsed: 17.5 cpu: 17.4 overhead ratio: elapsed: 14.5x cpu: 15x same with -j6 before: elapsed: 47 cpu: 116 after: elapsed: 20.8 cpu: 24 base: elapsed: 17.5 cpu: 17.5 overhead ratio: elapsed: 9x cpu: 15x Note: for now the executable is generated directly in the source tree (in solevn/bin ). That is not ideal. It and other similar polution should be moved, to workdir most likely.. For now we just hide the mess under the .gitignore carpet
2011-12-12Add .DS_StoreTor Lillqvist1-0/+1
2011-11-29Makefile.in -- die, die, die!Bjoern Michaelsen1-1/+0
2011-11-16gitignore debugging droppingsCaolán McNamara1-0/+4
2011-11-16add utility script and build_env to avoid sourcing Env.Host.shNorbert Thiebaud1-0/+1
The goal is to able to do partial build without having to source Env.Host.sh into one's environment There is 2 way to use this: 1/ copy the scripts lo_find_src_root and lo_proxy_start somewhere in your PATH, and then you can add alias build='lo_proxy_start build' alias deliver='lo_proxy_start deliver' in your .bashrc at that point you can use build and deliver anywhere in the source tree without the need to source anything. This allow you to switch from one source tree to another. the proper SRC_ROOT will be determined automatically based on the current working directory 2/ source build_env build_env only source the bare minimum to allow build and make to work for the associated source tree. If you want to work in a diffrent tree, you need to resource
2011-11-15.gitignore: do not ignore *.patchMichael Stahl1-1/+0
2011-11-07hush more kinds of file typesMichael Meeks1-1/+16
2011-10-18ignore callcatcher dirsCaolán McNamara1-0/+1
2011-10-10ignore libxslt .memdump and LibO lock filesCaolán McNamara1-0/+6
2011-10-07ignore downloaded extensionsPeter Foley1-0/+1
2011-10-07bootstrap.1 is not usefull anymore use bootsrap directlyNorbert Thiebaud1-1/+0
2011-10-03Add pspfontcache to gitignore.Tomas Chvatal1-0/+3
2011-09-21Ignore the MSVC vc90.pdb filesTor Lillqvist1-0/+2
2011-09-20Add file-lists/ folder to gitignore.Tomas Chvatal1-0/+1
2011-09-19Ignore config.params file.Tomas Chvatal1-0/+1
2011-09-18Remove config.parmsPeter Foley1-1/+0
The functionality provided by config.parms (saving the arguments given to configure) has been superseded by autogen.lastrun.
2011-09-15make the needed change to soffice.sh at configure timeDavid Tardon1-0/+1
2011-09-06clean visibility.cxxPeter Foley1-1/+0
The visibility configure test failed to clean up visibility.cxx. This patch fixes that.
2011-08-29Ignore pyc files in gitCédric Bosdonnat1-0/+3
2011-08-29ignore obsoleted builddirsDavid Tardon1-0/+2
2011-08-29ignore compiled python objects for gdb pretty printersDavid Tardon1-0/+4
2011-08-28Add build_error.log to .gitignoreKorrawit Pruegsanusak1-0/+1
2011-08-19Allow parallel build of the the cross build toolset.Jan Holesovsky1-0/+1
Plus various minor build tweaks.
2011-08-16Add the external dlls, exes etcTor Lillqvist1-0/+7
2011-08-06adjust .gitignore for new combined repoNorbert Thiebaud1-209/+1
2011-07-26git ignore workdir and clean it on make cleaNorbert Thiebaud1-1/+2