summaryrefslogtreecommitdiff
path: root/GNUmakefile
diff options
context:
space:
mode:
authorSimon Josefsson <simon@josefsson.org>2007-03-01 14:27:26 +0100
committerSimon Josefsson <simon@josefsson.org>2007-03-01 14:27:26 +0100
commit539655db7b151bea110ebccadd4a58272a119b42 (patch)
tree1d2dc08486f6d698130900a08bd1815168f585a4 /GNUmakefile
parentf793f4d8b4082cc144211831bb01fd657e404d5b (diff)
downloadlibtasn1-539655db7b151bea110ebccadd4a58272a119b42.tar.gz
Fix.
Diffstat (limited to 'GNUmakefile')
-rw-r--r--GNUmakefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/GNUmakefile b/GNUmakefile
index 1fd5a4c..8bef04f 100644
--- a/GNUmakefile
+++ b/GNUmakefile
@@ -1,8 +1,8 @@
have-gnulib-files := $(shell test -f gnulib.mk && test -f maint.mk && echo yes)
ifneq ($(have-gnulib-files),yes)
gnulib.mk:
- ln -s build-aux/GNUmakefile gnulib.mk
- ln -s build-aux/maint.mk maint.mk
+ ln -s build-aux/GNUmakefile gnulib.mk || cp build-aux/GNUmakefile gnulib.mk
+ ln -s build-aux/maint.mk maint.mk || cp build-aux/maint.mk maint.mk
endif
-include gnulib.mk
+-include gnulib.mk