diff options
author | Sergey Popov <pinkbyte@gentoo.org> | 2014-04-09 10:20:01 +0000 |
---|---|---|
committer | Sergey Popov <pinkbyte@gentoo.org> | 2014-04-09 10:20:01 +0000 |
commit | d30b5e4e2f01004f9f4b010ea440aa6d1f0b62e7 (patch) | |
tree | 329ade81f11b473490e6d196be7dc0bd4b52ea35 /app-pda/p3nfs/files | |
parent | Update pypy2_0 -> pypy. (diff) | |
download | historical-d30b5e4e2f01004f9f4b010ea440aa6d1f0b62e7.tar.gz historical-d30b5e4e2f01004f9f4b010ea440aa6d1f0b62e7.tar.bz2 historical-d30b5e4e2f01004f9f4b010ea440aa6d1f0b62e7.zip |
Fix building on systems without serial interfaces, wrt bug #314971, fix minor QA issues
Package-Manager: portage-2.2.8-r1/cvs/Linux x86_64
Manifest-Sign-Key: 0x1F357D42
Diffstat (limited to 'app-pda/p3nfs/files')
-rw-r--r-- | app-pda/p3nfs/files/p3nfs-5.19-set-default-tty.patch | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/app-pda/p3nfs/files/p3nfs-5.19-set-default-tty.patch b/app-pda/p3nfs/files/p3nfs-5.19-set-default-tty.patch new file mode 100644 index 000000000000..da6b73918b78 --- /dev/null +++ b/app-pda/p3nfs/files/p3nfs-5.19-set-default-tty.patch @@ -0,0 +1,14 @@ +--- configure.in.orig 2014-04-09 14:05:32.579648000 +0400 ++++ configure.in 2014-04-09 14:10:05.162648000 +0400 +@@ -81,7 +81,10 @@ + break + fi + done +-test -z "$DDEV" && AC_MSG_ERROR(serial device not found... Try harder.) ++if test -z "$DDEV"; then ++ DDEV="/dev/ttyS0" ++ AC_MSG_RESULT(serial device not found... Setting default one to $DDEV) ++fi + AC_SUBST(DDEV) + + dnl Looking for Symbian SDKs: |