Changeset 623516c
- Timestamp:
- Oct 10, 2010, 12:36:44 PM (14 years ago)
- Branches:
- debian
- Children:
- 1bcb4ba
- Parents:
- 675cc03 (diff), 267d44e (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:
- Jessica B. Hamrick <jhamrick@…> (10/10/10 12:36:44)
- git-committer:
- Jessica B. Hamrick <jhamrick@…> (10/10/10 12:36:44)
- Files:
-
- 31 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
client/bin/gbr
r43ddb7a r267d44e 59 59 # if it is a file (and not a directory) 60 60 sub append { 61 my $name = $File::Find::name; 62 if (-f $name) { 63 push(@allfiles, $name); 61 if (-f $_) { 62 push(@allfiles, $_); 64 63 } 65 64 } 66 65 67 # recursively find all the files and add them to @allfiles 68 find( \&append, @files);66 # recursively find all the files and add them to @allfiles 67 find({ wanted => \&append, no_chdir => 1}, @files); 69 68 70 69 # if we're not shuffling the list, then sort the files. If we are -
.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.