]> git.ipfire.org Git - people/ms/strongswan.git/commitdiff
maemo: Fixed remake of strongswan package.
authorTobias Brunner <tobias@strongswan.org>
Tue, 8 Feb 2011 14:04:06 +0000 (15:04 +0100)
committerTobias Brunner <tobias@strongswan.org>
Tue, 8 Feb 2011 14:17:36 +0000 (15:17 +0100)
packages/maemo-strongswan/Makefile

index d913eb40241f59e50fef0a191ce7f97add7a25bc..73ee5b758b9de0b110ae2c52a836127223b31361 100644 (file)
@@ -5,22 +5,23 @@ TARGETVERSION:=4.5.0+$(VERSION)
 ORIGNAME:=strongswan-$(VERSION)
 ORIGSRC:=$(BUILD)/strongswan_$(TARGETVERSION).orig.tar.gz
 
-package: $(ORIGSRC) prepare
+package: prepare
        cd $(BUILD)/$(ORIGNAME) && \
        dpkg-buildpackage -rfakeroot -sa > /dev/null
 
-source: $(ORIGSRC) prepare
+source: prepare
        cd $(BUILD)/$(ORIGNAME) && \
        dpkg-buildpackage -rfakeroot -sa -S > /dev/null
 
-prepare:
+prepare: $(ORIGSRC)
+       rm -Rf $(BUILD)/$(ORIGNAME)
+       tar -zx -C $(BUILD) -f $(ORIGSRC)
        debchange -b -v $(TARGETVERSION)-1
        cp -R debian $(BUILD)/$(ORIGNAME)
 
 $(ORIGSRC): $(SOURCE)/Makefile | $(BUILD)
        make -j -C $(SOURCE) dist-gzip > /dev/null
        mv $(SOURCE)/$(ORIGNAME).tar.gz $(ORIGSRC)
-       tar -zx -C $(BUILD) -f $(ORIGSRC)
 
 $(SOURCE)/Makefile: $(SOURCE)/configure
        cd $(SOURCE) && ./configure --disable-gmp > /dev/null