Skip to content

Commit cb4b485

Browse files
committed
The shared source files are now only built once.
git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@14658 a95241bf-73f2-0310-859d-f6bbb57e9c96
1 parent 8365d9e commit cb4b485

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

src/bin/coreutils/src/Jamfile

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,8 @@ BinCommand chgrp :
114114
chgrp.c chown-core.c : libfetish.a libroot.so : $(coreutils_rsrc) ;
115115

116116
BinCommand chown :
117-
chown.c chown-core.c : libfetish.a libroot.so : $(coreutils_rsrc) ;
117+
chown.c [ FGristFiles chown-core.o ]
118+
: libfetish.a libroot.so : $(coreutils_rsrc) ;
118119

119120
BinCommand cp :
120121
cp.c copy.c cp-hash.c : libfetish.a : $(coreutils_rsrc) ;
@@ -123,14 +124,14 @@ BinCommand md5sum :
123124
md5sum.c md5.c : libfetish.a : $(coreutils_rsrc) ;
124125

125126
BinCommand mv :
126-
mv.c copy.c cp-hash.c remove.c : libfetish.a libroot.so : $(coreutils_rsrc) ;
127+
mv.c [ FGristFiles copy.o cp-hash.o remove.o ]
128+
: libfetish.a libroot.so : $(coreutils_rsrc) ;
127129

128130
BinCommand sha1sum :
129131
md5sum.c sha1sum.c : libfetish.a : $(coreutils_rsrc) ;
130132

131133
BinCommand vdir :
132-
ls.c ls-vdir.c : libfetish.a : $(coreutils_rsrc) ;
134+
[ FGristFiles ls.o ] ls-vdir.c : libfetish.a : $(coreutils_rsrc) ;
133135

134136
MakeLocatePlatform groups ;
135137
Shell groups : groups.sh ;
136-

0 commit comments

Comments
 (0)