Changeset 0727893


Ignore:
Timestamp:
04/04/2013 08:09:42 PM (11 years ago)
Author:
Pierre Labastie <pierre@…>
Branches:
ablfs
Children:
1825286
Parents:
9fe527f
Message:

Merge trunk r3692

Files:
2 edited

Legend:

Unmodified
Added
Removed
  • Makefile

    r9fe527f r0727893  
    1818
    1919menuconfig: $(CONFIG)/mconf
     20        -@cp -a configuration configuration.old
    2021        @$(CONFIG)/mconf $(CONFIG_CONFIG_IN)
    2122
  • jhalfs

    r9fe527f r0727893  
    8484esac
    8585
     86# If the user has not saved his configuration file, let's ask
     87# if he or she really wants to run this stuff
     88if [ $(ls -l --time-style='+%Y%m%d%H%M%S' configuration.old | cut -d' ' -f 6) \
     89 -ge $(ls -l --time-style='+%Y%m%d%H%M%S' configuration | cut -d' ' -f 6) ]
     90  then echo -n "Do you want to run jhalfs? yes/no (yes): "
     91  read ANSWER
     92  if [ x${ANSWER:0:1} = "xn" -o x${ANSWER:0:1} = "xN" ] ; then
     93    echo "${nl_}Exiting gracefully.${nl_}"
     94    exit
     95  fi
     96fi
     97
     98# Change this to 0 to suppress almost all messages
    8699VERBOSITY=1
    87100
Note: See TracChangeset for help on using the changeset viewer.