Skip to content

Commit

Permalink
Merge pull request #27 from fumiyas/rm-v-is-not-partable
Browse files Browse the repository at this point in the history
makemake: 'rm -v' is not portable
  • Loading branch information
bruceg committed Feb 3, 2016
2 parents 8a448ab + 97d447e commit 77b1ead
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion makemake
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
t=makemake.targetd
T=makemake.TARGETS
S=makemake.SOURCES
trap 'rm -fv *.tmp.$$ $T $S; rm -r $t' EXIT
trap 'rm -f *.tmp.$$ $T $S; rm -r $t' EXIT
rm -rf $t $T $S
mkdir -p $t
rm -f `cat TARGETS`
Expand Down

0 comments on commit 77b1ead

Please sign in to comment.