diff options
author | joey <joey> | 2000-11-28 05:12:23 +0000 |
---|---|---|
committer | joey <joey> | 2000-11-28 05:12:23 +0000 |
commit | 5c808f0c60445978cb180202a9f760032d24f742 (patch) | |
tree | a206c5cb4d265fa5321d84aa30dff7164f116bce /dh_installwm | |
parent | c577623cfbfa6aedbe12da4b96759864ae6f466d (diff) | |
download | debhelper-5c808f0c60445978cb180202a9f760032d24f742.tar.gz |
r398: * If DH_COMPAT=3 is set, the following happens:
- Various debian/foo files like debian/docs, debian/examples, etc,
begin to support filename globbing. use \* to escape the wildcards of
course. I doubt this will bite anyone (Debian doesn't seem to contain
files with "*" or "?" in their names..), but it is guarded by v3 just
to be sure. Closes: #34120, #37694, #39846, #46249
Diffstat (limited to 'dh_installwm')
-rwxr-xr-x | dh_installwm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/dh_installwm b/dh_installwm index 7bc98aae..c510e9f0 100755 --- a/dh_installwm +++ b/dh_installwm @@ -10,7 +10,7 @@ if (! defined $dh{PRIORITY}) { } if (@ARGV) { - # This is here for backwards comatability. If the filename doesn't + # This is here for backwards compatability. If the filename doesn't # include a path, assume it's in /usr/X11R6/bin. if ($ARGV[0] !~ m:/:) { $ARGV[0]="/usr/X11R6/bin/$ARGV[0]"; @@ -22,7 +22,7 @@ foreach $PACKAGE (@{$dh{DOPACKAGES}}) { $file=pkgfile($PACKAGE,"wm"); if ($file) { - @wm=filearray($file, $TMP); + @wm=filearray($file, '.'); } if (($PACKAGE eq $dh{FIRSTPACKAGE} || $dh{PARAMS_ALL}) && @ARGV) { |