Whamcloud - gitweb
git://git.whamcloud.com
/
tools
/
e2fsprogs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
bb0224a
)
Fix non-POSIX ">&" in the Makefile for lib/ss's "make check" rule
author
Theodore Ts'o
<tytso@mit.edu>
Wed, 9 Apr 2008 19:40:43 +0000
(15:40 -0400)
committer
Theodore Ts'o
<tytso@mit.edu>
Wed, 9 Apr 2008 19:40:43 +0000
(15:40 -0400)
Signed-off-by: "Theodore Ts'o" <tytso@mit.edu>
lib/ss/Makefile.in
patch
|
blob
|
history
diff --git
a/lib/ss/Makefile.in
b/lib/ss/Makefile.in
index
23b5f60
..
8973fc9
100644
(file)
--- a/
lib/ss/Makefile.in
+++ b/
lib/ss/Makefile.in
@@
-170,7
+170,7
@@
test_ss: test_ss.o test_cmd.o $(LIBSS) $(LIBCOM_ERR)
check:: all test_ss
@echo " RUN TEST test_ss"
- @(LD_LIBRARY_PATH=$(LIB) DYLD_LIBRARY_PATH=$(LIB) ./test_ss -f $(srcdir)/test_script >
& test_out
; exit 0)
+ @(LD_LIBRARY_PATH=$(LIB) DYLD_LIBRARY_PATH=$(LIB) ./test_ss -f $(srcdir)/test_script >
test_out 2>&1
; exit 0)
@if ! diff test_out $(srcdir)/test_script_expected > test.diff; then \
echo "Regression test for ss library failed!"; exit 1 ; fi