diff options
author | Martin Szulecki | 2009-03-19 23:09:09 +0100 |
---|---|---|
committer | Martin Szulecki | 2009-03-19 23:09:09 +0100 |
commit | 806c5f7a413945bb54ff412cc03c799a48be6c22 (patch) | |
tree | 8a18bc258c4b439547eed33370b026d6db276655 | |
parent | 2a7a82094d50b75380b9858eae5eb41ed169378d (diff) | |
download | gfax-806c5f7a413945bb54ff412cc03c799a48be6c22.tar.gz gfax-806c5f7a413945bb54ff412cc03c799a48be6c22.tar.bz2 |
Fix build errors due to moved data files
-rw-r--r-- | data/Makefile.am | 4 | ||||
-rwxr-xr-x | src/Makefile.am | 7 |
2 files changed, 4 insertions, 7 deletions
diff --git a/data/Makefile.am b/data/Makefile.am index e782b80..1910621 100644 --- a/data/Makefile.am +++ b/data/Makefile.am @@ -1,7 +1,7 @@ SUBDIRS = icons -desktop_in_files=gfax.desktop.in -desktop_files=$(desktop_in_files:.desktop.in=.desktop) +desktop_in_files = gfax.desktop.in +desktop_files = $(desktop_in_files:.desktop.in=.desktop) @INTLTOOL_DESKTOP_RULE@ Applicationsdir = $(datadir)/applications diff --git a/src/Makefile.am b/src/Makefile.am index e71dd90..8956e95 100755 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -4,7 +4,7 @@ CSC = mcs -nowarn:0169,0219 -debug TARGET = gfax.exe WRAPPER = gfax -SCHEMA = $(top_srcdir)/gfax.schemas.in +SCHEMA = $(top_srcdir)/data/gfax.schemas.in #CSFLAGS = -define:DEBUGEFAX #CSFLAGS = -define:DEBUGHYLAFAX @@ -14,10 +14,7 @@ ASSEMBLIES = -r:Mono.Posix RESOURCES = \ -resource:$(top_srcdir)/glade/gfax.glade,gfax.glade \ - -resource:$(top_srcdir)/glade/send-druid.glade,send-druid.glade \ - -resource:$(top_srcdir)/pixmaps/gfax.png,gfax.png \ - -resource:$(top_srcdir)/pixmaps/send.png,send.png - + -resource:$(top_srcdir)/glade/send-druid.glade,send-druid.glade CSFILES = efax.cs \ fax.cs \ |