diff --git a/ChangeLog b/ChangeLog index af09580f2..3ebbfbf02 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2005-01-08 Ben Maurer + + * Makefile.include (install-data-local, uninstall-local): make + this actually work for things that are disabled. + 2005-01-08 Mike Kestner * configure.in : kill a ton of redundant stuff. diff --git a/Makefile.include b/Makefile.include index e76d1da6b..3e668aba2 100644 --- a/Makefile.include +++ b/Makefile.include @@ -46,13 +46,13 @@ $(ASSEMBLY): generated-stamp $(SNK) $(build_sources) $(references) $(CSC) -nowarn:0612 -unsafe -out:$(ASSEMBLY) -target:library $(build_references) $(build_sources) $(GENERATED_SOURCES) install-data-local: - @if test -n '$(TARGET)'; then \ + @if test -n '$(pkg)'; then \ echo "$(GACUTIL) /i $(ASSEMBLY) /f $(GACUTIL_FLAGS)"; \ $(GACUTIL) /i $(ASSEMBLY) /f $(GACUTIL_FLAGS) || exit 1; \ fi uninstall-local: - @if test -n '$(TARGET)'; then \ + @if test -n '$(pkg)'; then \ echo "$(GACUTIL) /u $(ASSEMBLY_NAME) $(GACUTIL_FLAGS)"; \ $(GACUTIL) /u $(ASSEMBLY_NAME) $(GACUTIL_FLAGS) || exit 1; \ fi