* Makefile.in (clean): Remove cygwin.def since it is autogenerated.
This commit is contained in:
parent
f451556720
commit
894c677711
@ -1,3 +1,7 @@
|
||||
2004-07-20 Christopher Faylor <cgf@timesys.com>
|
||||
|
||||
* Makefile.in (clean): Remove cygwin.def since it is autogenerated.
|
||||
|
||||
2004-07-19 Corinna Vinschen <corinna@vinschen.de>
|
||||
|
||||
* fhandler_dsp.cc (fhandler_dev_dsp::Audio_out::init): Fix non-ISO
|
||||
|
@ -351,7 +351,7 @@ uninstall-man:
|
||||
done
|
||||
|
||||
clean:
|
||||
-rm -f *.o *.dll *.a *.exp junk *.base version.cc regexp/*.o winver_stamp *.exe *.d *stamp* *_magic.h sigfe.s
|
||||
-rm -f *.o *.dll *.a *.exp junk *.base version.cc regexp/*.o winver_stamp *.exe *.d *stamp* *_magic.h sigfe.s cygwin.def
|
||||
-@$(MAKE) -C $(bupdir)/cygserver libclean
|
||||
|
||||
maintainer-clean realclean: clean
|
||||
|
@ -1939,10 +1939,9 @@ mknod (const char *_path, mode_t mode, __dev16_t dev)
|
||||
}
|
||||
|
||||
extern "C" int
|
||||
mkfifo (const char *_path, mode_t mode)
|
||||
mkfifo (const char *path, mode_t mode)
|
||||
{
|
||||
set_errno (ENOSYS); // FIXME
|
||||
return -1;
|
||||
return mknod32 (path, (mode & ~S_IFMT) | S_IFIFO, 0);
|
||||
}
|
||||
|
||||
/* seteuid: standards? */
|
||||
|
Loading…
x
Reference in New Issue
Block a user