]> git.donarmstrong.com Git - debhelper.git/blob - autoscripts/postinst-moveconffile
cmake: Pass CPPFLAGS in CFLAGS. Closes: #668813 Thanks, Simon Ruderich for the patch...
[debhelper.git] / autoscripts / postinst-moveconffile
1 if [ "$1" = configure ]; then
2         if [ -e "#OLD#" ]; then
3                 echo "Preserving user changes to #NEW# ..."
4                 if [ -e "#NEW#" ]; then
5                         mv -f "#NEW#" "#NEW#.dpkg-new"
6                 fi
7                 mv -f "#OLD#" "#NEW#"
8         fi
9 fi