* Makefile.in (clean): Remove cygwin.def since it is autogenerated.

This commit is contained in:
Christopher Faylor 2004-07-20 15:52:33 +00:00
parent f451556720
commit 894c677711
3 changed files with 7 additions and 4 deletions

View File

@ -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

View File

@ -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

View File

@ -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? */