Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 149536
b: refs/heads/master
c: 7211b8b
h: refs/heads/master
v: v3
  • Loading branch information
Sergei Poselenov authored and Sam Ravnborg committed Jun 9, 2009
1 parent a56a6f9 commit d3d840c
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 35763e854f8aa2d579236a4670c32c078d143b3a
refs/heads/master: 7211b8b9028854eee0d03ee6231440b7fb492521
8 changes: 6 additions & 2 deletions trunk/scripts/Makefile.headersinst
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,12 @@ quiet_cmd_remove = REMOVE $(unwanted)
cmd_remove = rm -f $(unwanted-file)

quiet_cmd_check = CHECK $(printdir) ($(words $(all-files)) files)
cmd_check = $(PERL) $< $(INSTALL_HDR_PATH)/include $(SRCARCH) \
$(addprefix $(install)/, $(all-files)); \
# Headers list can be pretty long, xargs helps to avoid
# the "Argument list too long" error.
cmd_check = for f in $(all-files); do \
echo "$(install)/$${f}"; done \
| xargs \
$(PERL) $< $(INSTALL_HDR_PATH)/include $(SRCARCH); \
touch $@

PHONY += __headersinst __headerscheck
Expand Down

0 comments on commit d3d840c

Please sign in to comment.