diff options
author | Colin Guthrie <colin@mageia.org> | 2012-04-14 16:02:01 +0000 |
---|---|---|
committer | Colin Guthrie <colin@mageia.org> | 2012-04-14 16:02:01 +0000 |
commit | fb66422000b3663a93a4bc1ae83ddeba2d8f1a4b (patch) | |
tree | 7bc9f8c3f7c0191b1ae009f04c2640859602550c | |
parent | be9e04302257b398465eb30b886c4d213f5ac47f (diff) | |
download | bootsplash-fb66422000b3663a93a4bc1ae83ddeba2d8f1a4b.tar bootsplash-fb66422000b3663a93a4bc1ae83ddeba2d8f1a4b.tar.gz bootsplash-fb66422000b3663a93a4bc1ae83ddeba2d8f1a4b.tar.bz2 bootsplash-fb66422000b3663a93a4bc1ae83ddeba2d8f1a4b.tar.xz bootsplash-fb66422000b3663a93a4bc1ae83ddeba2d8f1a4b.zip |
There are no perl scripts anymore. Only bash.
-rw-r--r-- | scripts/Makefile | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/scripts/Makefile b/scripts/Makefile index 1b69040..b0d1808 100644 --- a/scripts/Makefile +++ b/scripts/Makefile @@ -1,5 +1,4 @@ -PL=remove-boot-splash -SH=make-boot-splash make-boot-splash-raw switch-themes remove-theme +SH=make-boot-splash make-boot-splash-raw switch-themes remove-theme remove-boot-splash SYS=bootsplash.sysconfig sharedir=/usr/share @@ -9,11 +8,10 @@ all: check check: @for i in $(SH);do /bin/bash -n $$i || exit 1;echo $$i syntax OK;done - @for i in $(PL);do perl -c $$i ||exit 1;done install: @mkdir -p $(prefix)$(sharedir)/bootsplash/scripts/ $(prefix)$(etcsysdir) - @for i in $(SH) $(PL);do install -m755 $$i $(prefix)$(sharedir)/bootsplash/scripts/;done + @for i in $(SH);do install -m755 $$i $(prefix)$(sharedir)/bootsplash/scripts/;done install -m644 $(SYS) $(prefix)$(etcsysdir)/bootsplash clean: |