mirror of
https://github.com/gryf/pentadactyl-pm.git
synced 2026-01-08 06:04:12 +01:00
Change two Makefile.common var references to use $() over ${}.
Both are legal in Makefiles, but $() matches local convention, and $() prevents confusion about when the variable is expanded (i.e., shell vs. make).
This commit is contained in:
@@ -81,11 +81,11 @@ $(RDF): $(RDF_IN) Makefile
|
||||
< $< > $@
|
||||
@echo "SUCCESS: $@"
|
||||
|
||||
clean: ${LOCALEDIR}/$(LOCALES:%=%.clean)
|
||||
clean: $(LOCALEDIR)/$(LOCALES:%=%.clean)
|
||||
@echo "General $(NAME) cleanup..."
|
||||
rm -f $(JAR) $(XPI)
|
||||
|
||||
distclean: ${LOCALEDIR}/$(LOCALES:%=%.distclean) clean
|
||||
distclean: $(LOCALEDIR)/$(LOCALES:%=%.distclean) clean
|
||||
@echo "More $(NAME) cleanup..."
|
||||
rm -rf $(BUILD_DIR)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user