From 9f1337c6f092d902134b4c15daed12e1219d0744 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=B4me=20Duval?= Date: Thu, 11 Sep 2008 22:14:55 +0000 Subject: [PATCH] fixed ls to be ls and not dir (bug #2646) added dir git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@27421 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/bin/coreutils/src/Jamfile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/bin/coreutils/src/Jamfile b/src/bin/coreutils/src/Jamfile index 9b72be1851..38894e6d30 100644 --- a/src/bin/coreutils/src/Jamfile +++ b/src/bin/coreutils/src/Jamfile @@ -110,7 +110,7 @@ StdBinCommands BinCommand "[" : lbracket.c : libfetish.a : $(coreutils_rsrc) ; BinCommand ls : - ls.c ls-dir.c : libfetish.a : $(coreutils_rsrc) ; + ls.c ls-ls.c : libfetish.a : $(coreutils_rsrc) ; BinCommand rm : rm.c remove.c : libfetish.a libroot.so : $(coreutils_rsrc) ; @@ -139,6 +139,9 @@ BinCommand sha512sum : md5sum-sha512sum.c : libfetish.a : $(coreutils_rsrc) ; BinCommand vdir : [ FGristFiles ls.o ] ls-vdir.c : libfetish.a : $(coreutils_rsrc) ; +BinCommand dir : + [ FGristFiles ls.o ] ls-dir.c : libfetish.a : $(coreutils_rsrc) ; + BinCommand install : install.c [ FGristFiles copy.o cp-hash.o ] : libfetish.a : $(coreutils_rsrc) ;