pkgsrc-Changes archive

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

CVS commit: pkgsrc/databases/palm-db-tools



Module Name:    pkgsrc
Committed By:   dsainty
Date:           Sun Jul 23 01:29:35 UTC 2017

Modified Files:
        pkgsrc/databases/palm-db-tools: Makefile

Log Message:
Case-insensitive filesystems confuse make install without moving the
INSTALL file out of the way.

Fixes build on Darwin for the vanishingly small count of people that
both use MacOS and a Palm Pilot.  You're welcome.


To generate a diff of this commit:
cvs rdiff -u -r1.7 -r1.8 pkgsrc/databases/palm-db-tools/Makefile

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

Modified files:

Index: pkgsrc/databases/palm-db-tools/Makefile
diff -u pkgsrc/databases/palm-db-tools/Makefile:1.7 pkgsrc/databases/palm-db-tools/Makefile:1.8
--- pkgsrc/databases/palm-db-tools/Makefile:1.7 Tue Oct  2 21:25:37 2012
+++ pkgsrc/databases/palm-db-tools/Makefile     Sun Jul 23 01:29:35 2017
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.7 2012/10/02 21:25:37 asau Exp $
+# $NetBSD: Makefile,v 1.8 2017/07/23 01:29:35 dsainty Exp $
 #
 
 DISTNAME=      ${PKGNAME_NOREV:S/./_/g}
@@ -26,6 +26,10 @@ CONFIGURE_ARGS=      --disable-warnings --ena
 INSTALLATION_DIRS=     share/doc/palm-db-tools
 INSTALL_MAKE_FLAGS=    prefix=${DESTDIR}${PREFIX}
 
+# Case-insensitive filesystems confuse make install without this.
+post-extract:
+       cd ${WRKSRC} && mv INSTALL INSTALL.txt
+
 post-install:
        ${INSTALL_DATA} ${WRKSRC}/docs/manual.* ${DESTDIR}${PREFIX}/share/doc/palm-db-tools
 



Home | Main Index | Thread Index | Old Index