diff options
author | Guillaume Cottenceau <gc@mandriva.com> | 2003-06-05 21:51:34 +0000 |
---|---|---|
committer | Guillaume Cottenceau <gc@mandriva.com> | 2003-06-05 21:51:34 +0000 |
commit | 18cbe61b9aadffa0bd05a7ec224f64c49619e021 (patch) | |
tree | 778ddc4f7754a2e51358959e025cbe8eed2b5425 /perl-install/Makefile | |
parent | 1b49cb13220e72592bfe843983643e772687c7ba (diff) | |
download | drakx-18cbe61b9aadffa0bd05a7ec224f64c49619e021.tar drakx-18cbe61b9aadffa0bd05a7ec224f64c49619e021.tar.gz drakx-18cbe61b9aadffa0bd05a7ec224f64c49619e021.tar.bz2 drakx-18cbe61b9aadffa0bd05a7ec224f64c49619e021.tar.xz drakx-18cbe61b9aadffa0bd05a7ec224f64c49619e021.zip |
fix install crashed X server because /usr/bin/true was no more
available :/
Diffstat (limited to 'perl-install/Makefile')
-rw-r--r-- | perl-install/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/Makefile b/perl-install/Makefile index 71b442e77..c6ad8418a 100644 --- a/perl-install/Makefile +++ b/perl-install/Makefile @@ -54,7 +54,7 @@ test_pms_all: msgfmt -o $@ $< install_pms: $(DIRS) - for i in `perl -ne 's/sub (\w+?)_? {.*/$$1/ and print' commands.pm` sync; do ln -sf commands $(DEST)/usr/bin/$$i; done + for i in `perl -ne 's/sub (\w+?)_?(\(\))? {.*/$$1/ and print' commands.pm` sync; do ln -sf commands $(DEST)/usr/bin/$$i; done install -d $(DESTREP4PMS) find $(DESTREP4PMS) -name "*.pm.gz" | xargs rm -f |