forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
dev-libs/tvision: fix dot-in-INC issue.
Closes: https://bugs.gentoo.org/634684 Closes: gentoo#6172 Package-Manager: Portage-2.3.13, Repoman-2.3.4
- Loading branch information
Showing
2 changed files
with
31 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
diff --git a/config.pl b/config.pl | ||
index 53a7b50..784676b 100644 | ||
--- a/config.pl | ||
+++ b/config.pl | ||
@@ -5,8 +5,8 @@ | ||
# To specify the compilation flags define the CFLAGS environment variable. | ||
# | ||
|
||
-require "miscperl.pl"; | ||
-require "conflib.pl"; | ||
+require "./miscperl.pl"; | ||
+require "./conflib.pl"; | ||
|
||
# If the script is newer discard the cache. | ||
#GetCache() unless (-M 'config.pl' < -M 'configure.cache'); | ||
diff --git a/confignt.pl b/confignt.pl | ||
index e185f49..9ff7ae6 100644 | ||
--- a/confignt.pl | ||
+++ b/confignt.pl | ||
@@ -3,8 +3,8 @@ | ||
# see copyrigh file for details | ||
# | ||
|
||
-require "miscperl.pl"; | ||
-require "conflib.pl"; | ||
+require "./miscperl.pl"; | ||
+require "./conflib.pl"; | ||
|
||
SeeCommandLine(); | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters