Changeset fca0597
- Timestamp:
- Dec 4, 2010, 4:12:50 PM (14 years ago)
- Branches:
- debian
- Children:
- 618236b
- Parents:
- 1bcb4ba (diff), 02483ba (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent. - git-author:
- Quentin Smith <quentin@…> (12/04/10 16:12:50)
- git-committer:
- Quentin Smith <quentin@…> (12/04/10 16:12:50)
- Files:
-
- 31 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
server/lib/gutenbach
ra2944f6 r02483ba 83 83 # first. 84 84 if (!$arguments{"file"}) { 85 my ($fh, $file) = tempfile("gutenbachXXXXX", UNLINK => 1); # Ask File::Temp for a safe temporary file85 my ($fh, $file) = tempfile("gutenbachXXXXX", TMPDIR => 1, UNLINK => 1); # Ask File::Temp for a safe temporary file 86 86 my $buf; 87 87 while (read(STDIN, $buf, 1024*1024)) { # Read 1M at a time and put it in the temporary file -
.gitignore
rb58aada r1d7e681 1 1 *~ 2 debian/files 3 debian/*.debhelper 4 debian/*.substvars 5 debian/*.debhelper.log 6 debian/gutenbach/ 7 debian/gutenbach-client/ 8 debian/gutenbach-queue/ 9 debian/gutenbach-remctl/ 10 debian/gutenbach-server/ 11 debian/stamp-makefile-build 12 debian/tmp/ 2 13 client/bin/*.1.gz 3 debian/ -
Makefile
r9c0279e r2116615 5 5 install: 6 6 for d in $(DIRS); do (cd $$d; $(MAKE) install); done 7 clean: 8 for d in $(DIRS); do (cd $$d; $(MAKE) clean); done
Note: See TracChangeset
for help on using the changeset viewer.