commit: 687653a3cf7735a8680d3cd1fcd4d1ade3c2d4e7
Author: Michael Mair-Keimberger <m.mairkeimberger <AT> gmail <DOT> com>
AuthorDate: Tue Oct 31 08:02:19 2017 +0000
Commit: Michael Palimaka <kensington <AT> gentoo <DOT> org>
CommitDate: Sat Nov 4 07:22:30 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=687653a3
dev-embedded/pk2cmd: remove unused patch
.../files/pk2cmd-add-share-dir-for-dev-file.patch | 17 -----------------
1 file changed, 17 deletions(-)
diff --git a/dev-embedded/pk2cmd/files/pk2cmd-add-share-dir-for-dev-file.patch
b/dev-embedded/pk2cmd/files/pk2cmd-add-share-dir-for-dev-file.patch
deleted file mode 100644
index 448fecfca93..00000000000
--- a/dev-embedded/pk2cmd/files/pk2cmd-add-share-dir-for-dev-file.patch
+++ /dev/null
@@ -1,17 +0,0 @@
---- cmd_app.cpp.bak 2008-07-11 15:49:56.000000000 -0400
-+++ cmd_app.cpp 2008-09-20 23:18:17.000000000 -0400
-@@ -63,7 +63,13 @@
- _tsearchenv_s("PK2DeviceFile.dat", "PATH", tempString);
- if (_tcslen(tempString) < 17)
- {
-- _tcsncpy_s(tempString, "PK2DeviceFile.dat", 17);
-+ // Try /usr/share/pk2 first
-+ _tcsncpy_s(tempString, "/usr/share/pk2/PK2DeviceFile.dat", 32);
-+
-+ if(access(tempString, 0))
-+ // Well, that didn't work, default to the current
directory
-+ _tcsncpy_s(tempString, "PK2DeviceFile.dat", 17);
-+
- //_tcsncpy_s(tempString,
"C:\\PICkit_2\\pk2cmd\\debug\\PK2DeviceFile.dat", 42);
- //printf("DEBUG DEVICE FILE SETTING!!!!\n");
- }