mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-28 00:24:18 +00:00
50f296c0af
Co-authored-by: Antoine 'Toinux' Lesieur <toinux@laptaupe.local>
15 lines
364 B
Diff
15 lines
364 B
Diff
--- old/src/import-ferm
|
|
+++ new/src/import-ferm
|
|
@@ -42,9 +42,9 @@
|
|
# find the main "ferm" program
|
|
my $ferm;
|
|
if ($0 =~ /^(.*)\//) {
|
|
- $ferm = "$1/ferm";
|
|
+ $ferm = "$1/.ferm-wrapped";
|
|
} else {
|
|
- $ferm = 'ferm';
|
|
+ $ferm = '.ferm-wrapped';
|
|
}
|
|
|
|
# Perl 5.24 requires this prefix or else it will only look in @INC
|