unbreak BSDs again

This commit is contained in:
Robert Nagy
2011-07-27 13:07:37 +02:00
parent 46033e1793
commit 6f134809e1

View File

@@ -51,10 +51,26 @@ else
ifeq ($(OS),MACOSX)
include $(GBUILDDIR)/platform/macosx.mk
else
ifeq ($(OS),OPENBSD)
include $(GBUILDDIR)/platform/openbsd.mk
else
ifeq ($(OS),FREEBSD)
include $(GBUILDDIR)/platform/freebsd.mk
else
ifeq ($(OS),NETBSD)
include $(GBUILDDIR)/platform/netbsd.mk
else
ifeq ($(OS),DRAGONFLY)
include $(GBUILDDIR)/platform/dragonfly.mk
else
$(eval $(call gb_Output_error,Unsupported OS: $(OS)))
endif
endif
endif
endif
endif
endif
endif
endif
# vim: set noet sw=4 ts=4: