diff options
author | Felix Fietkau <nbd@openwrt.org> | 2007-01-12 11:09:05 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2007-01-12 11:09:05 +0000 |
commit | b2e87f2906d23b27b15f002ab41e7650dec6962f (patch) | |
tree | 025d39afe858e1a8d8ae6c11cbab3ae31f9effd2 | |
parent | 916382168371178c24cd4b9550b200f940496131 (diff) | |
download | upstream-b2e87f2906d23b27b15f002ab41e7650dec6962f.tar.gz upstream-b2e87f2906d23b27b15f002ab41e7650dec6962f.tar.bz2 upstream-b2e87f2906d23b27b15f002ab41e7650dec6962f.zip |
Fix the annoying base-files autorebuild bug.
When checking file mtimes in directories, timestamp.pl was following symlinks.
This broke on base-files, because there are symlinks to /tmp and to /proc/mounts in the build directory.
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6084 3c298f89-4303-0410-b956-a3cf2f4a3e73
-rw-r--r-- | include/package.mk | 2 | ||||
-rw-r--r-- | package/base-files/Makefile | 1 | ||||
-rwxr-xr-x | scripts/timestamp.pl | 5 |
3 files changed, 4 insertions, 4 deletions
diff --git a/include/package.mk b/include/package.mk index 1b69cf25d6..ffab228aae 100644 --- a/include/package.mk +++ b/include/package.mk @@ -21,7 +21,7 @@ define Build/DefaultTargets ifeq ($(DUMP),) ifeq ($(CONFIG_AUTOREBUILD),y) _INFO:= - ifneq ($$(shell $(SCRIPT_DIR)/timestamp.pl -p $(PKG_BUILD_DIR) .),$(PKG_BUILD_DIR)) + ifneq ($$(shell $(SCRIPT_DIR)/timestamp.pl -p $(PKG_BUILD_DIR) . $(PKG_FILE_DEPEND)),$(PKG_BUILD_DIR)) _INFO+=$(subst $(TOPDIR)/,,$(PKG_BUILD_DIR)) $(PKG_BUILD_DIR)/.prepared: package-clean endif diff --git a/package/base-files/Makefile b/package/base-files/Makefile index 14917f683b..33e6522e7e 100644 --- a/package/base-files/Makefile +++ b/package/base-files/Makefile @@ -13,6 +13,7 @@ PKG_NAME:=base-files PKG_RELEASE:=8 PKG_BUILD_DIR:=$(KERNEL_BUILD_DIR)/$(PKG_NAME) +PKG_FILE_DEPEND:=$(PLATFORM_DIR) REV:=$(shell LANG=C svn info | awk '/^Revision:/ { print$$2 }' ) ifeq ($(REV),) diff --git a/scripts/timestamp.pl b/scripts/timestamp.pl index a3aa50cb0d..a4c5cae015 100755 --- a/scripts/timestamp.pl +++ b/scripts/timestamp.pl @@ -17,9 +17,8 @@ sub get_ts($$) { while (<FIND>) { chomp; my $file = $_; - open FILE, "<$file"; - my @stat = stat FILE; - close FILE; + next if -l $file; + my @stat = stat $file; if ($stat[9] > $ts) { $ts = $stat[9]; $fn = $file; |