From: Arne Fitzenreiter Date: Sun, 17 Aug 2008 12:45:22 +0000 (+0200) Subject: Fix deletion of sourcecode before/after compile X-Git-Tag: v2.3-beta3~24 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=66e9c6eaa41de3dd92af3195b92e25dcc2f5cba7;p=ipfire-2.x.git Fix deletion of sourcecode before/after compile --- diff --git a/lfs/gutenprint b/lfs/gutenprint index c4e58385f2..e61ee34db8 100644 --- a/lfs/gutenprint +++ b/lfs/gutenprint @@ -75,10 +75,10 @@ $(subst %,%_MD5,$(objects)) : $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects)) @$(PREBUILD) - @rm -rf $(DIR_SRC)/$(DIR_APP) + @rm -rf $(DIR_APP) cd $(DIR_SRC) && tar jxf $(DIR_DL)/$(DL_FILE) cd $(DIR_APP) && ./configure --prefix=/usr --sysconfdir=/etc cd $(DIR_APP) && make $(MAKETUNING) cd $(DIR_APP) && make install - @rm -rf $(DIR_SRC)/$(DIR_APP) + @rm -rf $(DIR_APP) @$(POSTBUILD)