patch-build-tests_xml 1.1 KB

123456789101112131415161718192021222324
  1. $OpenBSD: patch-build-tests_xml,v 1.1.1.1 2013/07/10 14:40:29 jasper Exp $
  2. Correctly recognize and handle OpenBSD.
  3. --- build-tests.xml.orig Tue Jul 2 14:27:15 2013
  4. +++ build-tests.xml Tue Jul 2 14:30:42 2013
  5. @@ -85,11 +85,15 @@
  6. <property name="is.Unix" value="true"/>
  7. <property name="is.shell.sh" value="true"/>
  8. </target>
  9. + <target name="init-openbsd" if="is.OpenBSD">
  10. + <property name="is.Unix" value="true"/>
  11. + <property name="is.shell.sh" value="true"/>
  12. + </target>
  13. <!-- =================================================================== -->
  14. <!-- Initialize build. -->
  15. <!-- =================================================================== -->
  16. - <target name="init" depends="init-windows, init-linux, init-solaris, init-aix, init-hpux, init-macosx, init-osf1, init-freebsd, init-irix">
  17. + <target name="init" depends="init-windows, init-linux, init-solaris, init-aix, init-hpux, init-macosx, init-osf1, init-freebsd, init-irix, init-openbsd">
  18. </target>
  19. <!-- =================================================================== -->