SHA256
1
0
forked from pool/eaglemode
Files
eaglemode/01-eaglemode.patch
Dirk Stoecker 3403c5e34f Accepting request 1184044 from home:dirkmueller:Factory
- update to 0.96.2:
  * Fixed character encoding of PDF selection on non-UTF-8 systems.
  * Fixed occasional segmentation fault in PDF viewer.
  * Allowed to open URLs in PDF documents.

  Minor fixes and improvements.
  this change)
- Update to 0.93.0, announce message:
- Fixed sles build pkgconfig isn't supported by sles
  exist in Factory and the are not used much anymore

OBS-URL: https://build.opensuse.org/request/show/1184044
OBS-URL: https://build.opensuse.org/package/show/X11:Utilities/eaglemode?expand=0&rev=44
2024-07-11 15:05:32 +00:00

53 lines
1.4 KiB
Diff

diff -Naurd orig/make.pl mod/make.pl
--- orig/make.pl 2010-05-04 09:26:13.000000000 +0200
+++ mod/make.pl 2010-05-04 16:48:12.000000000 +0200
@@ -621,30 +621,30 @@
);
for (my $again=1; $again eq 1;) {
STDOUT->flush();
- my $ln=readline(*STDIN);
- $.=0; # for that a call to die will not print an input line number.
- if ($ln =~ /^\s*[nN]/) {
- exit(1);
- }
- elsif ($ln =~ /^\s*[yY]/) {
- $again=0;
- }
- elsif ($ln =~ /^\s*[aA]/) {
+# my $ln=readline(*STDIN);
+# $.=0; # for that a call to die will not print an input line number.
+# if ($ln =~ /^\s*[nN]/) {
+# exit(1);
+# }
+# elsif ($ln =~ /^\s*[yY]/) {
+# $again=0;
+# }
+# elsif ($ln =~ /^\s*[aA]/) {
$options{"continue"}="yes";
$again=0;
- }
- elsif ($ln =~ /^\s*[rR]/) {
+# }
+# elsif ($ln =~ /^\s*[rR]/) {
# *** secret option: "retry" ***
# I'm not satisfied with this, because:
# - The maker scripts are not reloaded (no effect if edited).
# - It's only for non-essential projects...
- pop(@failedNonEssentialMakers);
- $i--;
- $again=0;
- }
- else {
- print("Say yes, no or always: ");
- }
+# pop(@failedNonEssentialMakers);
+# $i--;
+# $again=0;
+# }
+# else {
+# print("Say yes, no or always: ");
+# }
}
}
}