summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorSolomon Peachy <pizza@shaftnet.org>2021-03-24 07:29:11 -0400
committerSolomon Peachy <pizza@shaftnet.org>2021-03-24 18:50:58 +0000
commita53864ed4a7814a95fee02f4fde8fc12a4df145a (patch)
treeab5ddacd03edae3b81a86cf66bae9a2e21a56d9b /tools
parented99b305a9bf83609452a7703a60e4c73b065f73 (diff)
downloadrockbox-a53864ed4a7814a95fee02f4fde8fc12a4df145a.tar.gz
rockbox-a53864ed4a7814a95fee02f4fde8fc12a4df145a.zip
build: Don't overwrite autoconf.h unless it has actually changed
This way we only rebuild the world if something relevant changed. Change-Id: Ia7d104cadec185a3227acbf330bb3b359296f0fb
Diffstat (limited to 'tools')
-rwxr-xr-xtools/configure8
1 files changed, 7 insertions, 1 deletions
diff --git a/tools/configure b/tools/configure
index c057f90006..4ddd044b71 100755
--- a/tools/configure
+++ b/tools/configure
@@ -4616,7 +4616,7 @@ if [ "$ARG_RBDIR" != "" ]; then
4616 echo "Using alternate rockbox dir: ${rbdir}" 4616 echo "Using alternate rockbox dir: ${rbdir}"
4617fi 4617fi
4618 4618
4619cat > autoconf.h <<EOF 4619cat > autoconf.h.new <<EOF
4620/* This header was made by configure */ 4620/* This header was made by configure */
4621#ifndef __BUILD_AUTOCONF_H 4621#ifndef __BUILD_AUTOCONF_H
4622#define __BUILD_AUTOCONF_H 4622#define __BUILD_AUTOCONF_H
@@ -4691,6 +4691,12 @@ ${app_lcd_height}
4691#endif /* __BUILD_AUTOCONF_H */ 4691#endif /* __BUILD_AUTOCONF_H */
4692EOF 4692EOF
4693 4693
4694# Make sure the file is different.
4695if ! diff -q autoconf.h.new autoconf.h > /dev/null 2>&1 ; then
4696 mv autoconf.h.new autoconf.h
4697 echo "Created autoconf.h"
4698fi
4699
4694if test -n "$t_cpu"; then 4700if test -n "$t_cpu"; then
4695 TARGET_INC="-I\$(FIRMDIR)/target/$t_cpu/$t_manufacturer/$t_model" 4701 TARGET_INC="-I\$(FIRMDIR)/target/$t_cpu/$t_manufacturer/$t_model"
4696 4702