1
0
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:
Ted Pavlic
2009-02-23 10:14:16 -05:00
parent 530670f1a0
commit eb74df729e

View File

@@ -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)