pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/www/ruby-selenium-webdriver



Module Name:    pkgsrc
Committed By:   gson
Date:           Sat Dec 17 20:45:42 UTC 2016

Modified Files:
        pkgsrc/www/ruby-selenium-webdriver: Makefile

Log Message:
When removing the Linux shared objects in the pre-configure target,
use the extension .so, not ${RUBY_DLEXT}, because the files in case
are from the distribution package and therefore have a fixed extension
unrelated to the extension used on the local system.  Fixes the
package build on Mac OS X.


To generate a diff of this commit:
cvs rdiff -u -r1.3 -r1.4 pkgsrc/www/ruby-selenium-webdriver/Makefile

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/www/ruby-selenium-webdriver/Makefile
diff -u pkgsrc/www/ruby-selenium-webdriver/Makefile:1.3 pkgsrc/www/ruby-selenium-webdriver/Makefile:1.4
--- pkgsrc/www/ruby-selenium-webdriver/Makefile:1.3     Fri Mar 13 17:59:44 2015
+++ pkgsrc/www/ruby-selenium-webdriver/Makefile Sat Dec 17 20:45:42 2016
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.3 2015/03/13 17:59:44 taca Exp $
+# $NetBSD: Makefile,v 1.4 2016/12/17 20:45:42 gson Exp $
 
 DISTNAME=      selenium-webdriver-2.45.0
 PKGNAME=       ${RUBY_PKGPREFIX}-${DISTNAME}
@@ -23,8 +23,8 @@ OVERRIDE_GEMSPEC+= \
 #
 # XXX: Remove this unportable garbage. Breaks on non-Linux targets.
 pre-configure:
-       ${RM} ${WRKSRC}/lib/selenium/webdriver/firefox/native/linux/amd64/x_ignore_nofocus.${RUBY_DLEXT}
-       ${RM} ${WRKSRC}/lib/selenium/webdriver/firefox/native/linux/x86/x_ignore_nofocus.${RUBY_DLEXT}
+       ${RM} ${WRKSRC}/lib/selenium/webdriver/firefox/native/linux/amd64/x_ignore_nofocus.so
+       ${RM} ${WRKSRC}/lib/selenium/webdriver/firefox/native/linux/x86/x_ignore_nofocus.so
 
 .include "../../lang/ruby/gem.mk"
 .include "../../mk/bsd.pkg.mk"



Home | Main Index | Thread Index | Old Index