diff --git a/ChangeLog b/ChangeLog index b896886767..751824271e 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2003-05-25 Michael Natterer + + * data/misc/Makefile.am: forgot some hardcoded "1.3" here. + 2003-05-25 Michael Natterer * plug-ins/common/uniteditor.c (unit_editor_dialog): removed a diff --git a/data/misc/Makefile.am b/data/misc/Makefile.am index 5b0b2e6962..db876367ff 100644 --- a/data/misc/Makefile.am +++ b/data/misc/Makefile.am @@ -30,18 +30,18 @@ install-data-local: if GNOME_DATADIR if test -d $(DESTDIR)@GNOME_DATADIR@/applications; then \ cd $(DESTDIR)@GNOME_DATADIR@/applications \ - && rm -f gimp-1.3.desktop \ - && $(LN_S) $(miscdatadir)/gimp.desktop gimp-1.3.desktop \ + && rm -f gimp-$(LT_RELEASE).desktop \ + && $(LN_S) $(miscdatadir)/gimp.desktop gimp-$(LT_RELEASE).desktop \ ; fi if test -d $(DESTDIR)@GNOME_DATADIR@/application-registry; then \ cd $(DESTDIR)@GNOME_DATADIR@/application-registry \ - && rm -f gimp-1.3.applications \ - && $(LN_S) $(miscdatadir)/gimp.applications gimp-1.3.applications \ + && rm -f gimp-$(LT_RELEASE).applications \ + && $(LN_S) $(miscdatadir)/gimp.applications gimp-$(LT_RELEASE).applications \ ; fi if test -d $(DESTDIR)@GNOME_DATADIR@/mime-info; then \ cd $(DESTDIR)@GNOME_DATADIR@/mime-info \ - && rm -f gimp-1.3.keys \ - && $(LN_S) $(miscdatadir)/gimp.keys gimp-1.3.keys \ + && rm -f gimp-$(LT_RELEASE).keys \ + && $(LN_S) $(miscdatadir)/gimp.keys gimp-$(LT_RELEASE).keys \ ; fi endif @@ -49,14 +49,14 @@ uninstall-local: if GNOME_DATADIR if test -d $(DESTDIR)@GNOME_DATADIR@/applications; then \ cd $(DESTDIR)@GNOME_DATADIR@/applications \ - && rm -f gimp-1.3.desktop \ + && rm -f gimp-$(LT_RELEASE).desktop \ ; fi if test -d $(DESTDIR)@GNOME_DATADIR@/application-registry; then \ cd $(DESTDIR)@GNOME_DATADIR@/application-registry \ - && rm -f gimp-1.3.applications \ + && rm -f gimp-$(LT_RELEASE).applications \ ; fi if test -d $(DESTDIR)@GNOME_DATADIR@/mime-info; then \ cd $(DESTDIR)@GNOME_DATADIR@/mime-info \ - && rm -f gimp-1.3.keys \ + && rm -f gimp-$(LT_RELEASE).keys \ ; fi endif