]> Zhao Yanbai Git Server - minix.git/commitdiff
Don't redirect stderr to /dev/null
authorBen Gras <ben@minix3.org>
Mon, 3 Apr 2006 18:47:28 +0000 (18:47 +0000)
committerBen Gras <ben@minix3.org>
Mon, 3 Apr 2006 18:47:28 +0000 (18:47 +0000)
drivers/memory/ramdisk/Makefile
drivers/memory/ramdisk/proto.sh

index eb47df5d31d392e950ce4a83c2e174515fd66a55..90179fd04ab4ffc772b7c97ade59004409407e0d 100644 (file)
@@ -22,7 +22,7 @@ bintoc:       bintoc.c
        $(CC) -o $@ bintoc.c
 
 image: proto.gen mtab rc $(PROGRAMS)
-       mkfs -B 2048 image proto.gen 2>/dev/null || { rm -f image; false; }
+       mkfs -B 2048 image proto.gen || { rm -f image; false; }
 
 at_wini: ../../at_wini/at_wini
        install -s ../../$@/$@ $@
@@ -94,7 +94,7 @@ depend:
        /usr/bin/mkdep "$(CC) -E $(CPPFLAGS)" *.c > .depend
 
 proto.gen: $(MAKEDEV) proto.sh proto
-       sh -e proto.sh <proto >proto.gen
+       sh -e proto.sh >proto.gen
 
 # Include generated dependencies.
 include .depend
index bbf879eb37c1c0dfabf04677e1189c4f665dc067..c3b837740fab4272f4ed8ca101a9d5c7402f2943 100644 (file)
@@ -1,7 +1,8 @@
 #!/bin/sh
+rm -rf t
 mkdir t 2>/dev/null || true
 cd t
-MAKEDEV std 2>/dev/null
+MAKEDEV std 
 rm fd1* fd0p* tcp* eth* ip* udp* tty[pq]* pty*
 sed -n '1,/@DEV/p' <../proto  | grep -v @DEV@
 ls -aln | grep '^[bc]' | \