Codebase list apel / 5ef268a
Check stamp file so that source file isn't newer Tatsuya Kinoshita 5 years ago
1 changed file(s) with 5 addition(s) and 2 deletion(s). Raw diff Collapse all Expand all
3232 esac
3333
3434 if [ -f "$ELCSTAMP" ]; then
35 echo "install/$PACKAGE: already byte-compiled for $FLAVOR, skipped"
36 exit 0
35 if [ -z "`find "$ELDIR/poem.el" -newer "$ELCSTAMP"`" ]; then
36 echo "install/$PACKAGE: already byte-compiled for $FLAVOR, skipped"
37 exit 0
38 fi
39 rm -f "$ELCSTAMP"
3740 fi
3841
3942 LOG=`mktemp -t elc.XXXXXXXXXXXX`