Skip to content

Commit

Permalink
Fix case change of attribute names when creating attributes.h on Solaris
Browse files Browse the repository at this point in the history
  • Loading branch information
arr2036 committed Jun 9, 2014
1 parent d85a85e commit 4418f9b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/include/all.mk
Expand Up @@ -53,7 +53,7 @@ src/include/radius.h: | src/include/attributes.h

src/include/attributes.h: share/dictionary.freeradius.internal
@$(ECHO) HEADER $@
@grep ^ATTRIBUTE $< | awk '{print "PW_"$$2 " " $$3}' | tr 'a-z' 'A-Z' | tr -- - _ | sed 's/^/#define /' > $@
@grep ^ATTRIBUTE $< | awk '{print "PW_"$$2 " " $$3}' | tr '[:lower:]' '[:upper:]' | tr -- - _ | sed 's/^/#define /' > $@

src/freeradius-devel/features.h: src/include/features.h src/freeradius-devel

Expand Down

0 comments on commit 4418f9b

Please sign in to comment.