summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTimo Sirainen <cras@irssi.org>1999-10-16 22:53:30 +0000
committercras <cras@dbcabf3a-b0e7-0310-adc4-f8d773084564>1999-10-16 22:53:30 +0000
commiteb736e0e7ad1966caf136c4bb72ac9fa64aed39a (patch)
treead25cd4943bfa8a52f30ff69f105ad7b90018351
parent8f59b3ec6eb9cded0973c3220f32d5fbf836d6ab (diff)
downloadirssi-eb736e0e7ad1966caf136c4bb72ac9fa64aed39a.zip
Fix for building with objdir
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@57 dbcabf3a-b0e7-0310-adc4-f8d773084564
-rw-r--r--Makefile.am4
-rw-r--r--src/common.h2
2 files changed, 3 insertions, 3 deletions
diff --git a/Makefile.am b/Makefile.am
index 7f590194..aa987945 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -19,9 +19,9 @@ SUBDIRS = macros src $(PLUGINS) $(SERVERTEST)
## to automatically rebuild aclocal.m4 if any of the macros in
## `macros/' change
-@MAINT@include $(srcdir)/macros/macros.dep
+@MAINT@include macros/macros.dep
@MAINT@macros/macros.dep: $(srcdir)/macros/Makefile.am
-@MAINT@ cd $(srcdir)/macros && $(MAKE) macros.dep
+@MAINT@ cd macros && $(MAKE) macros.dep
if HAVE_GNOME
appletdir = $(datadir)/applets/Network
diff --git a/src/common.h b/src/common.h
index f176ea0e..26e3e8c6 100644
--- a/src/common.h
+++ b/src/common.h
@@ -29,7 +29,7 @@
#ifdef HAVE_POPT_H
# include <popt.h>
#else
-# include <src/lib-popt/popt.h>
+# include "lib-popt/popt.h"
#endif
#ifdef HAVE_UNISTD_H